GitUI.FormRemoteProcess.ShowDialog C# (CSharp) Метод

ShowDialog() публичный статический Метод

public static ShowDialog ( GitUI.GitModuleForm owner, string arguments ) : bool
owner GitUI.GitModuleForm
arguments string
Результат bool
        public static new bool ShowDialog(GitModuleForm owner, string arguments)
        {
            return ShowDialog(owner, owner.Module, arguments);
        }

Same methods

FormRemoteProcess::ShowDialog ( IWin32Window owner, GitModule module, string arguments ) : bool

Usage Example

Пример #1
0
 public static new bool ShowDialog(IWin32Window owner, GitModule module, string arguments)
 {
     using (var formRemoteProcess = new FormRemoteProcess(module, arguments))
     {
         formRemoteProcess.ShowDialog(owner);
         return(!formRemoteProcess.ErrorOccurred());
     }
 }
All Usage Examples Of GitUI.FormRemoteProcess::ShowDialog