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

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