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