コード例 #1
0
 public void Rebase()
 {
     using (var form = new FormRebase(UICommands, FullPath))
     {
         form.ShowDialog(TreeViewNode.TreeView);
     }
 }
コード例 #2
0
ファイル: GitUICommands.cs プロジェクト: Copro/gitextensions
        public bool StartRebaseDialog(IWin32Window owner, string from, string to, string onto)
        {
            Func<bool> action = () =>
            {
                using (var form = new FormRebase(this, from, to, onto))
                    form.ShowDialog(owner);

                return true;
            };

            return DoActionOnRepo(owner, true, true, PreRebase, PostRebase, action);
        }
コード例 #3
0
 public TestAccessor(FormRebase form)
 {
     _form = form;
 }