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