public MasterWindow() { InitializeComponent(); CurrentFont = new Font(); CharEditorWindow = new CharEditorWindow(this); CharEditorWindow.MdiParent = this; CharEditorWindow.Show(); }
private void characterEditorToolStripMenuItem_Click(object sender, EventArgs e) { if (currentFont == null) return; if (CharEditorWindow == null) { CharEditorWindow = new CharEditorWindow(this); CharEditorWindow.MdiParent = this; CharEditorWindow.Show(); } else { CharEditorWindow.BringToFront(); } }
private void characterEditorToolStripMenuItem_Click(object sender, EventArgs e) { if (currentFont == null) { return; } if (CharEditorWindow == null) { CharEditorWindow = new CharEditorWindow(this); CharEditorWindow.MdiParent = this; CharEditorWindow.Show(); } else { CharEditorWindow.BringToFront(); } }