• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C# GitUIEventHandler类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C#中GitUIEventHandler的典型用法代码示例。如果您正苦于以下问题:C# GitUIEventHandler类的具体用法?C# GitUIEventHandler怎么用?C# GitUIEventHandler使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



GitUIEventHandler类属于命名空间,在下文中一共展示了GitUIEventHandler类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。

示例1: InvokeEventOnClose

 public void InvokeEventOnClose(Form form, GitUIEventHandler ev)
 {
     form.FormClosed += (object o, FormClosedEventArgs ea) =>
     {
         InvokeEvent(form == null ? null : form.Owner, ev);
     };
 }
开发者ID:Copro,项目名称:gitextensions,代码行数:7,代码来源:GitUICommands.cs


示例2: ShowModelessForm

        public void ShowModelessForm(IWin32Window owner, bool requiresValidWorkingDir, 
            GitUIEventHandler preEvent, GitUIPostActionEventHandler postEvent, Func<Form> provideForm)
        {
            if (requiresValidWorkingDir && !RequiresValidWorkingDir(owner))
                return;

            if (!InvokeEvent(owner, preEvent))
                return;

            Form form = provideForm();

            FormClosedEventHandler formClosed = null;

            formClosed = (sender, e) =>
                {
                    form.FormClosed -= formClosed;
                    InvokePostEvent(owner, true, postEvent);
                };

            form.FormClosed += formClosed;
            form.ShowInTaskbar = true;

            if (Application.OpenForms.Count > 0)
                form.Show();
            else
                form.ShowDialog();
        }
开发者ID:Copro,项目名称:gitextensions,代码行数:27,代码来源:GitUICommands.cs


示例3: InvokeEvent

 private bool InvokeEvent(IWin32Window ownerForm, GitUIEventHandler gitUIEventHandler)
 {
     return InvokeEvent(this, ownerForm, gitUIEventHandler);
 }
开发者ID:Copro,项目名称:gitextensions,代码行数:4,代码来源:GitUICommands.cs


示例4: DoActionOnRepo

        /// <summary>
        /// 
        /// </summary>
        /// <param name="requiresValidWorkingDir">If action requires valid working directory</param>
        /// <param name="owner">Owner window</param>
        /// <param name="changesRepo">if successfuly done action changes repo state</param>
        /// <param name="preEvent">Event invoked before performing action</param>
        /// <param name="postEvent">Event invoked after performing action</param>
        /// <param name="action">Action to do. Return true to indicate that the action was successfully done.</param>
        /// <returns>true if action was sccessfully done, false otherwise</returns>
        public bool DoActionOnRepo(IWin32Window owner, bool requiresValidWorkingDir, bool changesRepo, 
            GitUIEventHandler preEvent, GitUIPostActionEventHandler postEvent, Func<bool> action)
        {
            bool actionDone = false;
            RepoChangedNotifier.Lock();
            try
            {
                if (requiresValidWorkingDir && !RequiresValidWorkingDir(owner))
                    return false;

                if (!InvokeEvent(owner, preEvent))
                    return false;
                try
                {
                    actionDone = action();
                }
                finally
                {
                    InvokePostEvent(owner, actionDone, postEvent);
                }
            }
            finally
            {
                RepoChangedNotifier.UnLock(changesRepo && actionDone);
            }

            return actionDone;
        }
开发者ID:Copro,项目名称:gitextensions,代码行数:38,代码来源:GitUICommands.cs


示例5: DoAction

        /// <summary>
        /// 
        /// </summary>
        /// <param name="requiresValidWorkingDir">If action requires valid working directory</param>
        /// <param name="owner">Owner window</param>
        /// <param name="preEvent">Event invoked before performing action</param>
        /// <param name="postEvent">Event invoked after performing action</param>
        /// <param name="action">Action to do</param>
        /// <returns>true if action was done, false otherwise</returns>
        public bool DoAction(IWin32Window owner, bool requiresValidWorkingDir, GitUIEventHandler preEvent, GitUIPostActionEventHandler postEvent, Func<bool> action)
        {
            if (requiresValidWorkingDir && !RequiresValidWorkingDir(owner))
                return false;

            if (!InvokeEvent(owner, preEvent))
                return false;

            bool actionDone = action();

            InvokePostEvent(owner, actionDone, postEvent);

            return actionDone;
        }
开发者ID:JakeGinnivan,项目名称:gitextensions,代码行数:23,代码来源:GitUICommands.cs


示例6: InvokeEvent

 private bool InvokeEvent(GitUIEventHandler gitUIEventHandler)
 {
     return InvokeEvent(this, gitUIEventHandler);
 }
开发者ID:phillco,项目名称:gitextensions,代码行数:4,代码来源:GitUICommands.cs


示例7: InvokeEvent

        internal static bool InvokeEvent(GitUIEventHandler gitUIEventHandler)
        {
            try
            {
                GitUIEventArgs e = new GitUIEventArgs(GitUICommands.Instance);
                if (gitUIEventHandler != null)
                    gitUIEventHandler.Invoke(e);

                return !e.Cancel;
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message, "Exception");
            }
            return true;
        }
开发者ID:bleis-tift,项目名称:gitextensions,代码行数:16,代码来源:GitUICommands.cs



注:本文中的GitUIEventHandler类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# GitVersionContext类代码示例发布时间:2022-05-24
下一篇:
C# GitUICommands类代码示例发布时间:2022-05-24
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap