BExplorer.Shell.CommonFileDialogs.FolderSelectDialog.ShowDialog C# (CSharp) Method

ShowDialog() public method

Shows the dialog
public ShowDialog ( ) : bool
return bool
        public bool ShowDialog() => ShowDialog(IntPtr.Zero);

Same methods

FolderSelectDialog::ShowDialog ( IntPtr hWndOwner ) : bool

Usage Example

    private void btnctOther_Click(object sender, RoutedEventArgs e) {
      var dlg = new FolderSelectDialog();
      if (dlg.ShowDialog())
        SetFOperation(dlg.FileName, OperationType.Copy);

      _ShellListView.Focus();
    }
All Usage Examples Of BExplorer.Shell.CommonFileDialogs.FolderSelectDialog::ShowDialog