Example #1
0
 private void customersButton_ItemClick(object sender, ItemClickEventArgs e)
 {
     if (IsOpened(customersForm))
     {
         customersForm.Focus();
     }
     else
     {
         customersForm           = new CustomersForm();
         customersForm.MdiParent = this;
         customersForm.Show();
     }
 }
Example #2
0
 private void customersButton_ItemClick(object sender, ItemClickEventArgs e)
 {
     if (IsOpened(customersForm))
         customersForm.Focus();
     else
     {
         customersForm = new CustomersForm();
         customersForm.MdiParent = this;
         customersForm.Show();
     }
 }