Exemplo n.º 1
0
        private void menuFileNew_Click(object sender, System.EventArgs e)
        {
            DictionaryForm newForm = new DictionaryForm();

            newForm.MdiParent = this;
            newForm.Show();
        }
Exemplo n.º 2
0
 private void menuFileSave_Click(object sender, System.EventArgs e)
 {
     if (this.ActiveMdiChild != null)
     {
         DictionaryForm child = (DictionaryForm)this.ActiveMdiChild;
         child.SaveDictionary();
     }
 }
Exemplo n.º 3
0
        private void menuFileOpen_Click(object sender, System.EventArgs e)
        {
            DictionaryForm newForm = new DictionaryForm();

            if (newForm.OpenDictionary())
            {
                newForm.MdiParent = this;
                newForm.Show();
            }
        }
Exemplo n.º 4
0
        private void menuFileOpen_Click(object sender, System.EventArgs e)
        {
            DictionaryForm newForm = new DictionaryForm();

            if (newForm.OpenDictionary())
            {
                newForm.MdiParent = this;
                newForm.Show();
            }
        }
Exemplo n.º 5
0
 private void menuFileNew_Click(object sender, System.EventArgs e)
 {
     DictionaryForm newForm = new DictionaryForm();
     newForm.MdiParent = this;
     newForm.Show();
 }