当前位置: 首页>>代码示例>>C#>>正文


C# IRepositoryHostPlugin类代码示例

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


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

示例1: ForkAndCloneForm

 public ForkAndCloneForm(IRepositoryHostPlugin gitHoster, EventHandler<GitModuleEventArgs> GitModuleChanged)
 {
     this.GitModuleChanged = GitModuleChanged;
     _gitHoster = gitHoster;
     InitializeComponent();
     Translate();
 }
开发者ID:vbjay,项目名称:gitextensions,代码行数:7,代码来源:ForkAndCloneForm.cs

示例2: CreatePullRequestForm

 public CreatePullRequestForm(IRepositoryHostPlugin repoHost, string chooseRemote, string chooseBranch)
 {
     _repoHost = repoHost;
     _chooseBranch = chooseBranch;
     _chooseRemote = chooseRemote;
     InitializeComponent();
     Translate();
 }
开发者ID:jystic,项目名称:gitextensions,代码行数:8,代码来源:CreatePullRequestForm.cs

示例3: CreatePullRequestForm

 public CreatePullRequestForm(GitUICommands aCommands, IRepositoryHostPlugin repoHost, string chooseRemote, string chooseBranch)
 {
     _repoHost = repoHost;
     _chooseRemote = chooseRemote;
     _currentBranch = "";
     InitializeComponent();
     Translate();
     prevTitle = _titleTB.Text;
 }
开发者ID:semi836,项目名称:gitextensions,代码行数:9,代码来源:CreatePullRequestForm.cs

示例4: StartPullRequestsDialog

 internal void StartPullRequestsDialog(IRepositoryHostPlugin gitHoster)
 {
     StartPullRequestsDialog(null, gitHoster);
 }
开发者ID:Copro,项目名称:gitextensions,代码行数:4,代码来源:GitUICommands.cs

示例5: StartPullRequestsDialog

 internal void StartPullRequestsDialog(IWin32Window owner, IRepositoryHostPlugin gitHoster)
 {
     WrapRepoHostingCall("View pull requests", gitHoster,
                         gh =>
                         {
                             using (var frm = new ViewPullRequestsForm(this, gitHoster)) frm.ShowDialog(owner);
                         });
 }
开发者ID:JakeGinnivan,项目名称:gitextensions,代码行数:8,代码来源:GitUICommands.cs

示例6: StartCreatePullRequest

 public void StartCreatePullRequest(IWin32Window owner, IRepositoryHostPlugin gitHoster, string chooseRemote, string chooseBranch)
 {
     WrapRepoHostingCall("Create pull request", gitHoster,
                         gh => (new CreatePullRequestForm(gitHoster, chooseRemote, chooseBranch)).ShowDialog(owner));
 }
开发者ID:phiree,项目名称:gitextensions,代码行数:5,代码来源:GitUICommands.cs

示例7: StartCreatePullRequest

 public void StartCreatePullRequest(IRepositoryHostPlugin gitHoster, string chooseRemote, string chooseBranch)
 {
     WrapRepoHostingCall("Create pull request", gitHoster, (gh) => (new RepoHosting.CreatePullRequestForm(gitHoster, chooseRemote, chooseBranch)).ShowDialog());
 }
开发者ID:jystic,项目名称:gitextensions,代码行数:4,代码来源:GitUICommands.cs

示例8: StartCreatePullRequest

 public void StartCreatePullRequest(IRepositoryHostPlugin gitHoster, string chooseRemote, string chooseBranch)
 {
     StartCreatePullRequest(null, gitHoster, chooseRemote, chooseBranch);
 }
开发者ID:Copro,项目名称:gitextensions,代码行数:4,代码来源:GitUICommands.cs

示例9: ViewPullRequestsForm

 public ViewPullRequestsForm(GitUICommands aCommands, IRepositoryHostPlugin gitHoster)
     : this(aCommands)
 {
     _gitHoster = gitHoster;
 }
开发者ID:kunigaku,项目名称:gitextensions,代码行数:5,代码来源:ViewPullRequestsForm.cs

示例10: ForkAndCloneForm

 public ForkAndCloneForm(IRepositoryHostPlugin gitHoster)
 {
     _gitHoster = gitHoster;
     InitializeComponent();
     Translate();
 }
开发者ID:chifteur,项目名称:gitextensions,代码行数:6,代码来源:ForkAndCloneForm.cs

示例11: ViewPullRequestsForm

 public ViewPullRequestsForm(IRepositoryHostPlugin gitHoster)
     : this()
 {
     _gitHoster = gitHoster;
 }
开发者ID:NickWhymark,项目名称:gitextensions,代码行数:5,代码来源:ViewPullRequestsForm.cs

示例12: StartPullRequestsDialog

 internal void StartPullRequestsDialog(IRepositoryHostPlugin gitHoster)
 {
     WrapRepoHostingCall("View pull requests", gitHoster, (gh) => (new RepoHosting.ViewPullRequestsForm(gitHoster)).ShowDialog());
 }
开发者ID:jystic,项目名称:gitextensions,代码行数:4,代码来源:GitUICommands.cs

示例13: WrapRepoHostingCall

        private void WrapRepoHostingCall(string name, IRepositoryHostPlugin gitHoster,
                                                Action<IRepositoryHostPlugin> call)
        {
            if (!gitHoster.ConfigurationOk)
            {
                var eventArgs = new GitUIEventArgs(null, this);
                gitHoster.Execute(eventArgs);
            }

            if (gitHoster.ConfigurationOk)
            {
                try
                {
                    call(gitHoster);
                }
                catch (Exception ex)
                {
                    MessageBox.Show(
                        string.Format("ERROR: {0} failed. Message: {1}\r\n\r\n{2}", name, ex.Message, ex.StackTrace),
                        "Error! :(");
                }
            }
        }
开发者ID:Copro,项目名称:gitextensions,代码行数:23,代码来源:GitUICommands.cs

示例14: StartPullRequestsDialog

 internal void StartPullRequestsDialog(IWin32Window owner, IRepositoryHostPlugin gitHoster)
 {
     WrapRepoHostingCall("View pull requests", gitHoster,
                         gh => (new ViewPullRequestsForm(gitHoster)).ShowDialog(owner));
 }
开发者ID:phiree,项目名称:gitextensions,代码行数:5,代码来源:GitUICommands.cs

示例15: StartCloneForkFromHoster

 public void StartCloneForkFromHoster(IWin32Window owner, IRepositoryHostPlugin gitHoster, GitModuleChangedEventHandler GitModuleChanged)
 {
     WrapRepoHostingCall("View pull requests", gitHoster, gh =>
     {
         using (var frm = new ForkAndCloneForm(gitHoster, GitModuleChanged)) frm.ShowDialog(owner);
     });
 }
开发者ID:Copro,项目名称:gitextensions,代码行数:7,代码来源:GitUICommands.cs


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