예제 #1
0
        public static void ShowInstance()
        {
            if (_instance == null)
            {
                _instance = new LicensesWindow();

                _instance.Closed += (S, E) => _instance = null;
            }

            _instance.ShowAndFocus();
        }
예제 #2
0
 void ViewLicenses(object Sender, RoutedEventArgs E)
 {
     LicensesWindow.ShowInstance();
 }
예제 #3
0
 private void ViewLicenses(object sender, RoutedEventArgs e)
 {
     LicensesWindow.ShowInstance();
 }