-4

I'm looking for alternatives to "FolderBrowserDialog" and "SaveFileDialog" or how I can edit these screens.

I need to create exactly the same interface of the image attached and the big challenge for me is how navigate/access the Windows Explorer like that in C#, as I didn't found how to edit the default save or select folder screens provided by C#.

Create log screen

MuhanadY
  • 752
  • 1
  • 12
  • 40
  • Hi Ivo. Did you try something? If you have some code then we may help to improve. – fatihyildizhan Apr 17 '20 at 13:40
  • 1
    No "editing", these dialogs are baked into the operating system. The screenshot shows what SaveFileDialog looked like 18 years ago. You can still move that clock back by setting its AutoUpgradeEnabled property to False. Intentionally making your app look dated is not usually a great idea. – Hans Passant Apr 17 '20 at 13:51
  • Hello! I looked for ways to edit the interface and buttons of the default screens of FolderBrowserDialog and SaveFileDialog, but my first impression is these are a MS Windows default screen and not a screen provided/implemented by C#, so I probably will not be able to edit these screens. So I'm looking for another ways to access the folders, but everything I found until now to navigate within Win Explorer uses FolderBrowserDialog. By now, I don't know others ways to do this unless this two. – Ivo Martin Apr 17 '20 at 13:59
  • Hello Hans, I'm simulating a program (WinFIOL) for educational purposes, and this screen will create a file to continuously save what the user type in the command line interface. In a first step, this screen create a empty file in the location defined by the user. – Ivo Martin Apr 17 '20 at 14:04

1 Answers1

1

You can create your own file dialog using TreeView Check Daniel's answer on this post