Answers for "c# opendialog"

C#
4

c# open file dialog

OpenFileDialog dialog = new OpenFileDialog();
if (DialogResult.OK == dialog.ShowDialog()) 
{
    string path = dialog.FileName;
}
Posted by: Guest on July-16-2020
1

open folder dialog c#

// https://github.com/ookii-dialogs/ookii-dialogs-wpf
string path;
var fbd = new VistaFolderBrowserDialog();
fbd.ShowNewFolderButton = true;
fbd.Description = "Select Source Folder";
fbd.ShowDialog();
path = fbd.SelectedPath;
//Fix Length Browse Folder Disk
return path.Length > 3 ? $@"{path}" : $@"{path}";
Posted by: Guest on September-23-2021

C# Answers by Framework

Browse Popular Code Answers by Language