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


C# Helper.Show方法代码示例

本文整理汇总了C#中Helper.Show方法的典型用法代码示例。如果您正苦于以下问题:C# Helper.Show方法的具体用法?C# Helper.Show怎么用?C# Helper.Show使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Helper的用法示例。


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

示例1: packageCreationToolStripMenuItem1_Click

 private void packageCreationToolStripMenuItem1_Click(object sender, EventArgs e)
 {
     string xtext = "Package Creation\r\n\r\nEverything is pretty much self " +
         "explanitory, the one thing I do need to explain is the Deviation for SVOD " +
         "(Game) packages.  If you create a clean ISO from scratch, the Deviation will be 0, " +
         "but if it was extracted from a previous SVOD package, you need to know the Deviation from " +
         "that package.";
     Helper xhlp = new Helper(xtext, (ToolStripMenuItem)sender);
     xhlp.MdiParent = this;
     xhlp.Show();
 }
开发者ID:VictorOverX,项目名称:X360,代码行数:11,代码来源:MainForm.cs

示例2: achievementsToolStripMenuItem_Click

 private void achievementsToolStripMenuItem_Click(object sender, EventArgs e)
 {
     string xtext = "How to Edit Achievements and Add Games\r\n\r\n" +
         "After you open your profile, locate the Profile>Profile Tab." +
         "  You will see a list of games, which is all your games played.\r\n\r\n" +
         "To unlock any of those achievements, simply click on that game and go " +
         " to the Profile>Achievements tab where you will be able to mod the achievements." +
         "  Just select an achievement, mod it, hit Save Achievement, do all that you want, " +
         " and then hit Save to Profile, Save Dash GPD, vwallah.\r\n\r\nAfter unlocking all that you want, " +
         "go to the Security tab and click Fix, you are all good to go.\r\n\r\n" +
         "To add games, simple open the multiadder, locate all that you want, and hit OK.";
     Helper xhlp = new Helper(xtext, (ToolStripMenuItem)sender);
     xhlp.MdiParent = this;
     xhlp.Show();
 }
开发者ID:VictorOverX,项目名称:X360,代码行数:15,代码来源:MainForm.cs

示例3: gamertagEditingToolStripMenuItem_Click

 private void gamertagEditingToolStripMenuItem_Click(object sender, EventArgs e)
 {
     string xtext = "How to Edit Your Gamertag\r\n\r\n" +
         "After you open your profile, locate the Profile>Profile Tab." +
         "  You will see a textbox wif your gamertag in that.  Simply edit the gamertag " +
         "and hit Save Account.  Be sure to go to Security and hit Fix <3";
     Helper xhlp = new Helper(xtext, (ToolStripMenuItem)sender);
     xhlp.MdiParent = this;
     xhlp.Show();
 }
开发者ID:VictorOverX,项目名称:X360,代码行数:10,代码来源:MainForm.cs

示例4: helper_button3_Click

 private void helper_button3_Click(object sender, EventArgs e)
 {
     Helper newForm = new Helper();
     newForm.Show();
 }
开发者ID:deadlock29,项目名称:Settlement,代码行数:5,代码来源:MainForm.cs


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