private void MenuItemDebugClick(object sender, EventArgs e) { if (iFormUserLog == null || iFormUserLog.IsDisposed) { iFormUserLog = new FormUserLog(Icon); } iFormUserLog.Show(); }
private void consoleToolStripMenuItem_Click(object sender, EventArgs e) { if (iFormUserLog.IsDisposed) { iFormUserLog = new FormUserLog(Icon); } iFormUserLog.SetBackColour(iViewSupport.BackColour); iFormUserLog.SetForeColour(iViewSupport.ForeColour); iFormUserLog.SetFont(iViewSupport.FontSmall); iFormUserLog.Show(); }