SettingsDialog.xaml の相互作用ロジック
Inheritance: System.Windows.Window
 internal static void ShowDialog(Window owner, PeerCastApplication app)
 {
   var window = new SettingsDialog(app);
   window.Owner = owner;
   window.ShowDialog();
 }
Example #2
0
 private void OnOpenSettings(object sender, System.Windows.Input.ExecutedRoutedEventArgs e)
 {
     SettingsDialog.ShowDialog(this, ((PeerCastAppViewModel)this.DataContext).Model);
 }