FolderSelect.FolderSelectDialog.ShowDialog C# (CSharp) Method

ShowDialog() public method

Shows the dialog
public ShowDialog ( ) : bool
return bool
        public bool ShowDialog()
        {
            return ShowDialog(IntPtr.Zero);
        }

Same methods

FolderSelectDialog::ShowDialog ( IntPtr hWndOwner ) : bool

Usage Example

Beispiel #1
0
 private void btnBrowse_Click(object sender, EventArgs e)
 {
     //set the user code directory
     if (folderSelectDialog.ShowDialog())
     {
         txtBrowse.Text = folderSelectDialog.FileName;
     }
 }
All Usage Examples Of FolderSelect.FolderSelectDialog::ShowDialog