Exemplo n.º 1
0
        public static void ShowInstance()
        {
            if (_instance == null)
            {
                _instance = new LicensesWindow();

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

            _instance.ShowAndFocus();
        }
Exemplo n.º 2
0
 void ViewLicenses(object Sender, RoutedEventArgs E)
 {
     LicensesWindow.ShowInstance();
 }
Exemplo n.º 3
0
 private void ViewLicenses(object sender, RoutedEventArgs e)
 {
     LicensesWindow.ShowInstance();
 }