Exemplo n.º 1
0
		public static void ShowConfigurationDialog (GitRepository repo)
		{
			var dlg = new GitConfigurationDialog (repo);
			MessageService.ShowCustomDialog (dlg);
		}
Exemplo n.º 2
0
 public static void ShowConfigurationDialog(VersionControlSystem vcs, string repoPath, string repoUrl)
 {
     using (var dlg = new GitConfigurationDialog(vcs, repoPath, repoUrl))
         MessageService.ShowCustomDialog(dlg);
 }
Exemplo n.º 3
0
        public static void ShowConfigurationDialog(GitRepository repo)
        {
            var dlg = new GitConfigurationDialog(repo);

            MessageService.ShowCustomDialog(dlg);
        }
Exemplo n.º 4
0
		public static void ShowConfigurationDialog (GitRepository repo)
		{
			GitConfigurationDialog dlg = new GitConfigurationDialog (repo);
			dlg.Run ();
			dlg.Destroy ();
		}