示例#1
0
 private void bottomSalersButton_ItemClick(object sender, ItemClickEventArgs e)
 {
     if (IsOpened(bottomSalerForm))
         bottomSalerForm.Focus();
     else
     {
         bottomSalerForm = new BottomSaler();
         bottomSalerForm.MdiParent = this;
         bottomSalerForm.Show();
     }
 }
示例#2
0
 private void bottomSalersButton_ItemClick(object sender, ItemClickEventArgs e)
 {
     if (IsOpened(bottomSalerForm))
     {
         bottomSalerForm.Focus();
     }
     else
     {
         bottomSalerForm           = new BottomSaler();
         bottomSalerForm.MdiParent = this;
         bottomSalerForm.Show();
     }
 }