/// <summary> /// Shows the singleton instance of this form. /// </summary> public static void ShowSingleton() { if (thisSingleton == null) { thisSingleton = new FormHelp(); thisSingleton.Show(); } else { if (!thisSingleton.Visible) { thisSingleton.Show(); } thisSingleton.BringToFront(); } }
private void helpToolStripMenuItem1_Click(object sender, EventArgs e) { //frm_hlp.Owner = this; frm_hlp.Show(); //Help.ShowHelp(this, Application.StartupPath + "\\Документация.chm"); }
private void mm_help_help_Click(object sender, EventArgs e) { FormHelp help = new FormHelp(); help.Show(); }
public void OpenHelp() { FormHelp h = new FormHelp(); h.Show(); }