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