GitUI.FormProcess.ShowDialog C# (CSharp) Method

ShowDialog() public static method

public static ShowDialog ( GitUI.GitModuleForm owner, string arguments ) : bool
owner GitUI.GitModuleForm
arguments string
return bool
        public static bool ShowDialog(GitModuleForm owner, string arguments)
        {
            return ShowDialog(owner, (string)null, arguments);
        }

Same methods

FormProcess::ShowDialog ( GitUI.GitModuleForm owner, string arguments, bool useDialogSettings ) : bool
FormProcess::ShowDialog ( GitUI.GitModuleForm owner, string process, string arguments ) : bool
FormProcess::ShowDialog ( IWin32Window owner, GitModule module, string arguments ) : bool
FormProcess::ShowDialog ( IWin32Window owner, GitModule module, string arguments, bool useDialogSettings ) : bool
FormProcess::ShowDialog ( IWin32Window owner, GitModule module, string process, string arguments ) : bool
FormProcess::ShowDialog ( IWin32Window owner, string process, string arguments, string aWorkingDirectory, string input, bool useDialogSettings ) : bool

Usage Example

Ejemplo n.º 1
0
 private void SynchronizeSubmoduleClick(object sender, EventArgs e)
 {
     Cursor.Current = Cursors.WaitCursor;
     var process = new FormProcess(GitCommands.GitCommands.SubmoduleSyncCmd(SubModuleName.Text));
     process.ShowDialog();
     Initialize();
 }
All Usage Examples Of GitUI.FormProcess::ShowDialog