Add wiki under the help options for useful tutorials for when they are finished

This commit is contained in:
KillzXGaming 2019-05-15 19:57:12 -04:00
parent 9767d71f75
commit f08a08ce32
3 changed files with 14 additions and 0 deletions

Binary file not shown.

View file

@ -69,6 +69,7 @@
this.stToolStrip1 = new Switch_Toolbox.Library.Forms.STToolStrip();
this.saveToolStripButton = new System.Windows.Forms.ToolStripButton();
this.updateToolstrip = new System.Windows.Forms.ToolStripButton();
this.tutorialToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.menuStrip1.SuspendLayout();
this.stPanel1.SuspendLayout();
this.tabControlContextMenuStrip.SuspendLayout();
@ -270,6 +271,7 @@
//
this.requestFeatureToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.aboutToolStripMenuItem1,
this.tutorialToolStripMenuItem,
this.reportBugToolStripMenuItem,
this.requestFeatureToolStripMenuItem1,
this.githubToolStripMenuItem});
@ -434,6 +436,13 @@
this.updateToolstrip.ToolTipText = "Update Tool";
this.updateToolstrip.Click += new System.EventHandler(this.updateToolstrip_Click);
//
// tutorialToolStripMenuItem
//
this.tutorialToolStripMenuItem.Name = "tutorialToolStripMenuItem";
this.tutorialToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
this.tutorialToolStripMenuItem.Text = "Tutorials";
this.tutorialToolStripMenuItem.Click += new System.EventHandler(this.tutorialToolStripMenuItem_Click);
//
// MainForm
//
this.AllowDrop = true;
@ -511,6 +520,7 @@
private System.Windows.Forms.ToolStripMenuItem reportBugToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem requestFeatureToolStripMenuItem1;
private System.Windows.Forms.ToolStripMenuItem githubToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem tutorialToolStripMenuItem;
}
}

View file

@ -1169,5 +1169,9 @@ namespace Toolbox
private void requestFeatureToolStripMenuItem1_Click(object sender, EventArgs e) {
System.Diagnostics.Process.Start("https://github.com/KillzXGaming/Switch-Toolbox/issues");
}
private void tutorialToolStripMenuItem_Click(object sender, EventArgs e) {
System.Diagnostics.Process.Start("https://github.com/KillzXGaming/Switch-Toolbox/wiki/Tutorial-Home-Page");
}
}
}