private void aboutToolStripMenuItem_Click(object sender, EventArgs e) { Form_AboutBox form_ab = new Form_AboutBox(); form_ab.MdiParent = this; form_ab.Show(); }
public MainForm() { InitializeComponent(); // customization - logger LogHelper.NewLogger(typeof(MainForm), Config.LOG_PATH_DEFAULT); // customization - mapping table initializeMapping(); // customization - live status liveCaptureToolStripMenuItem.Checked = Config.LIVE_STATUS; // customization - start up window display_form_watchList(); Form_AboutBox form_ab = new Form_AboutBox(); form_ab.MdiParent = this; form_ab.Show(); }