本文整理汇总了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();
}
示例2: CreatePullRequestForm
public CreatePullRequestForm(IRepositoryHostPlugin repoHost, string chooseRemote, string chooseBranch)
{
_repoHost = repoHost;
_chooseBranch = chooseBranch;
_chooseRemote = chooseRemote;
InitializeComponent();
Translate();
}
示例3: CreatePullRequestForm
public CreatePullRequestForm(GitUICommands aCommands, IRepositoryHostPlugin repoHost, string chooseRemote, string chooseBranch)
{
_repoHost = repoHost;
_chooseRemote = chooseRemote;
_currentBranch = "";
InitializeComponent();
Translate();
prevTitle = _titleTB.Text;
}
示例4: StartPullRequestsDialog
internal void StartPullRequestsDialog(IRepositoryHostPlugin gitHoster)
{
StartPullRequestsDialog(null, gitHoster);
}
示例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);
});
}
示例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));
}
示例7: StartCreatePullRequest
public void StartCreatePullRequest(IRepositoryHostPlugin gitHoster, string chooseRemote, string chooseBranch)
{
WrapRepoHostingCall("Create pull request", gitHoster, (gh) => (new RepoHosting.CreatePullRequestForm(gitHoster, chooseRemote, chooseBranch)).ShowDialog());
}
示例8: StartCreatePullRequest
public void StartCreatePullRequest(IRepositoryHostPlugin gitHoster, string chooseRemote, string chooseBranch)
{
StartCreatePullRequest(null, gitHoster, chooseRemote, chooseBranch);
}
示例9: ViewPullRequestsForm
public ViewPullRequestsForm(GitUICommands aCommands, IRepositoryHostPlugin gitHoster)
: this(aCommands)
{
_gitHoster = gitHoster;
}
示例10: ForkAndCloneForm
public ForkAndCloneForm(IRepositoryHostPlugin gitHoster)
{
_gitHoster = gitHoster;
InitializeComponent();
Translate();
}
示例11: ViewPullRequestsForm
public ViewPullRequestsForm(IRepositoryHostPlugin gitHoster)
: this()
{
_gitHoster = gitHoster;
}
示例12: StartPullRequestsDialog
internal void StartPullRequestsDialog(IRepositoryHostPlugin gitHoster)
{
WrapRepoHostingCall("View pull requests", gitHoster, (gh) => (new RepoHosting.ViewPullRequestsForm(gitHoster)).ShowDialog());
}
示例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! :(");
}
}
}
示例14: StartPullRequestsDialog
internal void StartPullRequestsDialog(IWin32Window owner, IRepositoryHostPlugin gitHoster)
{
WrapRepoHostingCall("View pull requests", gitHoster,
gh => (new ViewPullRequestsForm(gitHoster)).ShowDialog(owner));
}
示例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);
});
}