Inheritance: System.Windows.Window
Beispiel #1
0
        private void AboutCommand_Execute(object o, ExecutedRoutedEventArgs args)
        {
            var aboutView = new AboutView {
                Owner = this
            };

            aboutView.ShowDialog();
        }
Beispiel #2
0
 private void AboutCommand_Execute(object o, ExecutedRoutedEventArgs args)
 {
     AboutView aboutView = new AboutView { Owner = this };
     aboutView.ShowDialog();
 }