コード例 #1
0
        private void tsbQuick_Click(object sender, EventArgs e)
        {
            QuickCondTotal qct = QuickCondTotal.CreateForm();

            qct.MdiParent = this;
            qct.Show();
        }
コード例 #2
0
 public static QuickCondTotal CreateForm()
 {
     if (_single == null)
     {
         _single = new QuickCondTotal();
     }
     else
     {
         _single.Activate();
     }
     return(_single);
 }
コード例 #3
0
 private void this_FormClosed(object sender, FormClosedEventArgs e)
 {
     _single = null;
 }