Пример #1
0
 public MasterWindow()
 {
     InitializeComponent();
     CurrentFont                = new Font();
     CharEditorWindow           = new CharEditorWindow(this);
     CharEditorWindow.MdiParent = this;
     CharEditorWindow.Show();
 }
Пример #2
0
 public MasterWindow()
 {
     InitializeComponent();
     CurrentFont = new Font();
     CharEditorWindow = new CharEditorWindow(this);
     CharEditorWindow.MdiParent = this;
     CharEditorWindow.Show();
 }
Пример #3
0
 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();
     }
 }
Пример #4
0
 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();
     }
 }