public static BuildNewProjWindow GetInstance()
        {
            if (staticInstance == null)
            {
                staticInstance = new BuildNewProjWindow();
            }

            return staticInstance;
        }
        public static BuildNewProjWindow GetInstance()
        {
            if (staticInstance == null)
            {
                staticInstance = new BuildNewProjWindow();
            }

            return(staticInstance);
        }
 private void BuildNewProj_Click(object sender, RoutedEventArgs e)
 {
     BuildNewProjWindow.GetInstance().ShowDialog();
 }
 private void WindowOnClosed(object sender, System.EventArgs e)
 {
     staticInstance = null;
 }
 private void WindowOnClosed(object sender, System.EventArgs e)
 {
     staticInstance = null;
 }