I am using custom WPF FolderBrowserDialog in my application for Exporting data to particular folder location. It has read only properties SelectedPath, RootPath ,other properties and dependency properties available in it.
Now I want to assign my own path in RootFolder and SelectedPath. Since it is readonly properties I cannot able to assign any path in that. Also it has dependency property for the same properties as FolderBrowserDialog.RootFolderProperty.SetVale(dependencyproperty,object); Is it possible to assign values in the dependency proeprty using C# not by xaml?
How can I set default path to open with particular selected folder always(D:\Export) FolderBrowserDialog and also I want to implement the logic to remember the last selected folder. Please help me on this.