예제 #1
0
 private void InputDataButton_Click(object sender, EventArgs e)
 {
     if (inputDataView == null)
     {
         inputDataView = new InputDataView(this)
         {
             TopLevel = false,
         };
         inputDataView.MdiParent = this;
         inputDataView.Show();
     }
 }
예제 #2
0
 public void DeleteSelfReference(Form f)
 {
     if (f == inputDataView)
     {
         inputDataView = null;
     }
     if (f == managementView)
     {
         managementView = null;
     }
     if (f == fileView)
     {
         fileView = null;
     }
 }