コード例 #1
0
        public override bool Execute(GitUIEventArgs args)
        {
            using var frm = new CreateLocalBranchesForm(args);
            frm.ShowDialog(args.OwnerForm);

            return(true);
        }
コード例 #2
0
        public override bool Execute(GitUIBaseEventArgs gitUiCommands)
        {
            using (var frm = new CreateLocalBranchesForm(gitUiCommands))
            {
                frm.ShowDialog(gitUiCommands.OwnerForm);
            }

            return(true);
        }
コード例 #3
0
 public override bool Execute(GitUIBaseEventArgs gitUiCommands)
 {
     using (var frm = new CreateLocalBranchesForm(gitUiCommands)) frm.ShowDialog(gitUiCommands.OwnerForm as IWin32Window);
     return true;
 }
コード例 #4
0
 public bool Execute(GitUIBaseEventArgs gitUiCommands)
 {
     using (var frm = new CreateLocalBranchesForm(gitUiCommands)) frm.ShowDialog(gitUiCommands.OwnerForm as IWin32Window);
     return(true);
 }