public static new bool ShowDialog(GitModuleForm owner, string arguments)
 {
     return ShowDialog(owner, owner.Module, arguments);
 }
 public static bool ShowDialog(GitModuleForm owner, string arguments, bool useDialogSettings)
 {
     return ShowDialog(owner, owner.Module, arguments, useDialogSettings);
 }
 public static string ReadDialog(GitModuleForm owner, string arguments)
 {
     return ReadDialog(owner, null, arguments, owner.Module, null, true);
 }
 public static bool ShowDialog(GitModuleForm owner, string arguments)
 {
     return ShowDialog(owner, (string)null, arguments);
 }
 public static bool ShowDialog(GitModuleForm owner, string process, string arguments)
 {
     return ShowDialog(owner, process, arguments, owner.Module.WorkingDir, null, true);
 }
 public static FormProcess ShowModeless(GitModuleForm owner, string arguments)
 {
     return(ShowModeless(owner, null, arguments, owner.Module.WorkingDir, null, true));
 }
Exemple #7
0
 public static FormProcess ShowModeless(GitModuleForm owner, string arguments)
 {
     return ShowModeless(owner, null, arguments, owner.Module.WorkingDir, null, true);
 }
Exemple #8
0
 public static bool ShowDialog(GitModuleForm owner, string arguments, bool useDialogSettings)
 {
     return(ShowDialog(owner, owner.Module, arguments, useDialogSettings));
 }
Exemple #9
0
 public static bool ShowDialog(GitModuleForm owner, string process, string arguments)
 {
     return(ShowDialog(owner, process, arguments, owner.Module.WorkingDir, null, true));
 }
Exemple #10
0
 public static bool ShowDialog(GitModuleForm owner, string arguments)
 {
     return(ShowDialog(owner, (string)null, arguments));
 }
Exemple #11
0
 public static string ReadDialog(GitModuleForm owner, string arguments)
 {
     return(ReadDialog(owner, null, arguments, owner.Module, null, true));
 }
 public static new bool ShowDialog(GitModuleForm owner, string arguments)
 {
     return(ShowDialog(owner, owner.Module, arguments));
 }