Currently, showing a dialog can take 10-20 seconds when started in DEBUG mode. And 3-5 seconds RELEASE mode. Improve the loading time. A little way to speed up is to set ExpandToCurrentDirectory to False.
Like in MS Win 32 OpenFileDialog - thumbnails with preview or details about the selected file. Check the attached images for better clarification.
Currently dialogs provide only custom places pane.
Add auto-populated built-in section with well-known quick access like in the MS file dialogs.
FileDialogs are constructed by RadWindow and ExplorerControl as its content. Explorer control holds navigation tree, autocomplete, filtering combobox, main pane for viewing fodler and files, search box, breadcrumb. You can check all visual parts in the following help article: http://docs.telerik.com/devtools/wpf/controls/radfiledialogs/visual-structure Users might need to put the ExplorerControl in non-window parts of their application (for example in docked RadPane of RadDocking. Also, they might need to override OK/Cancel commands for that purpose.
Provide built-in support for the following combinations:
fileDialog.CustomPlaces.Add(@"C:\Users\<user name>\OneDrive");
Click on Drive / Folder in the Navigation tree should put its Name in the AutoComplete box and then pressing the Open Button of the dialog should choose the selected drive / folder and close the dialog.