Exemplo n.º 1
0
 private void Window_Closing(object sender, System.ComponentModel.CancelEventArgs e)
 {
     m_instance = null;
     this.Hide();
     //e.Cancel = true;
 }
Exemplo n.º 2
0
 public static NewProjectWindow GetInstance()
 {
     if (m_instance == null)
     {
         m_instance = new NewProjectWindow();
     }
     return m_instance;
 }