1
What is the name of that component in Visual Studio / C# that selects the directory and takes the file path?
1
What is the name of that component in Visual Studio / C# that selects the directory and takes the file path?
3
OpenFileDialog
. An example of use is here.
For directories, it’s called FolderBrowserDialog
.
Browser other questions tagged c# winforms visual-studio
You are not signed in. Login or sign up in order to post.
great buddy is just what I’m looking for, thank you!
– Bruno Rodrigues
Bad as I take the path from the selected folder to a textbox?
– Bruno Rodrigues
@Brunorodrigues I updated the answer.
– Leonel Sanches da Silva
Thanks again!
– Bruno Rodrigues
I think it applies to Browserdialog even, I want to select a directory and when clicking OK it display the path in a textbox.
– Bruno Rodrigues