Example #1
0
 private void cancelButton_Click(object sender, RoutedEventArgs e)
 {
     _gameOptions = null;
     this.Close();
 }
Example #2
0
 public options()
 {
     _gameOptions = GameOptions.Create();
     DataContext = _gameOptions;
     InitializeComponent();
 }
Example #3
0
 public GameViewModel()
 {
     _players          = new List <Player>();
     this._gameOptions = GameOptions.Create();
 }
Example #4
0
 public GameViewModel()
 {
     _players = new List<Player>();
     this._gameOptions = GameOptions.Create();
 }
Example #5
0
 private void cancelButton_Click(object sender, RoutedEventArgs e)
 {
     _gameOptions = null;
     this.Close();
 }
Example #6
0
 public options()
 {
     _gameOptions = GameOptions.Create();
     DataContext  = _gameOptions;
     InitializeComponent();
 }