-1

I Open a Folder in C# with following codes. But I want to disable the address bar so that someone does not understand the file's address. And nobody can go to the previous or next folder!

 System.Diagnostics.Process.Start("explorer.exe", @"D:\Project WPF\Atlas\Samle\D-File\MyFiles");

Or open the Explorer in the C# Window. enter image description here

Reza.S
  • 25
  • 1
  • 5

1 Answers1

0

You could try using ExplorerBrowser. This will help embed the explorer window in your application and will give you more control over what you wish to show.

Shivani Katukota
  • 859
  • 9
  • 16