private void showHelpMenuItem_Click(object sender, EventArgs e) { helpWindow help = new helpWindow(); help.showHelpWindow(); help.Show(); }
public AboutGraphSynth() { InitializeComponent(); help = new helpWindow(); /* Initialize the AboutBox to display the product information from the assembly information. * Change assembly information settings for your application through either: * - Project->Properties->Application->Assembly Information * - AssemblyInfo.cs */ this.Text = String.Format("About {0}", AssemblyTitle); this.labelProductName.Text = AssemblyProduct; this.labelVersion.Text = String.Format("Version {0}", AssemblyVersion); this.labelCopyright.Text = AssemblyCopyright; this.labelCompanyName.Text = AssemblyCompany; this.labelDescription.Text = AssemblyDescription; }