public void Execute(GitUIBaseEventArgs gitUiCommands)
        {
            if (string.IsNullOrEmpty(gitUiCommands.GitWorkingDir))
                return;

            FormImpact form = new FormImpact();
            form.ShowDialog();
        }
        public override bool Execute(GitUIBaseEventArgs gitUIEventArgs)
        {
            if (string.IsNullOrEmpty(gitUIEventArgs.GitModule.GitWorkingDir))
                return false;

            using (FormImpact form = new FormImpact(gitUIEventArgs.GitModule))
                form.ShowDialog(gitUIEventArgs.OwnerForm as IWin32Window);
            return false;
        }
Esempio n. 3
0
        public bool Execute(GitUIBaseEventArgs gitUiCommands)
        {
            if (string.IsNullOrEmpty(gitUiCommands.GitWorkingDir))
                return false;

            FormImpact form = new FormImpact();
            form.ShowDialog(gitUiCommands.OwnerForm as IWin32Window);
            return false;
        }
Esempio n. 4
0
        public bool Execute(GitUIBaseEventArgs gitUIEventArgs)
        {
            if (string.IsNullOrEmpty(gitUIEventArgs.GitModule.GitWorkingDir))
            {
                return(false);
            }

            using (FormImpact form = new FormImpact())
                form.ShowDialog(gitUIEventArgs.OwnerForm as IWin32Window);
            return(false);
        }
Esempio n. 5
0
        public void Execute(GitUIBaseEventArgs gitUiCommands)
        {
            if (string.IsNullOrEmpty(gitUiCommands.GitWorkingDir))
            {
                return;
            }

            FormImpact form = new FormImpact();

            form.ShowDialog();
        }
Esempio n. 6
0
        public override bool Execute(GitUIBaseEventArgs gitUIEventArgs)
        {
            if (string.IsNullOrEmpty(gitUIEventArgs.GitModule.WorkingDir))
            {
                return(false);
            }

            using (var form = new FormImpact(gitUIEventArgs.GitModule))
                form.ShowDialog(gitUIEventArgs.OwnerForm);
            return(false);
        }
Esempio n. 7
0
        public bool Execute(GitUIBaseEventArgs gitUiCommands)
        {
            if (string.IsNullOrEmpty(gitUiCommands.GitWorkingDir))
            {
                return(false);
            }

            FormImpact form = new FormImpact();

            form.ShowDialog(gitUiCommands.OwnerForm as IWin32Window);
            return(false);
        }
Esempio n. 8
0
        public override bool Execute(GitUIEventArgs args)
        {
            if (string.IsNullOrEmpty(args.VsrModule.WorkingDir))
            {
                return(false);
            }

            using (var form = new FormImpact(args.VsrModule))
            {
                form.ShowDialog(args.OwnerForm);
            }

            return(false);
        }