Exemple #1
0
 public static frmFilePlots GetChildInstance()
 {
     if (m_SChildform == null)
     {
         m_SChildform = new frmFilePlots();
     }
     return(m_SChildform);
 }
Exemple #2
0
 public static frmFilePlots GetChildInstance()
 {
     if (m_SChildform == null)
     {
         m_SChildform = new frmFilePlots();
     }
     return m_SChildform;
 }
Exemple #3
0
 private void CreateFilePlotWindow()
 {
     frmFilePlots childInstance = null;
     childInstance = frmFilePlots.GetChildInstance();
     if (childInstance.IsDisposed)
     {
         childInstance = new frmFilePlots();
     }
     childInstance.BringToFront();
     childInstance.MdiParent = this;
     childInstance.Show();
 }