Beispiel #1
0
        private void DoShowAboutExecuted(object param)
        {
            LateNightAboutView about = new LateNightAboutView();

            about.Owner       = App.Current.MainWindow;
            about.DataContext = new LateNightAboutModel(container);
            about.ShowDialog();
        }
 private void DoShowAboutExecuted(object param) {
     LateNightAboutView about = new LateNightAboutView();
     about.Owner = App.Current.MainWindow;
     about.DataContext = new LateNightAboutModel(container);
     about.ShowDialog();
 }