コード例 #1
0
 public GameWindow()
 {
     InitializeComponent();
     defaultButtons = new[] { Hit, Stand, Split };
     splitButtons = new[] { HitLeft, HitRight, StandLeft, StandRight };
     DataContext = new GameViewModel(this, "temp");
 }
コード例 #2
0
ファイル: Commands.cs プロジェクト: ronaldme/BlackJackR
 public Commands(GameViewModel viewModel)
 {
     DealCommand = new DealCommand(viewModel);
     HitCommand = new HitCommand(viewModel);
     StandCommand = new StandCommand(viewModel);
     SplitCommand = new SplitCommand(viewModel);
     RulesCommand = new RulesCommand(viewModel);
     HitLeftCommand = new HitLeftCommand(viewModel);
     StandLeftCommand = new StandLeftCommand(viewModel);
     HitRightCommand = new HitRightCommand(viewModel);
     StandRightCommand = new StandRightCommand(viewModel);
 }
コード例 #3
0
ファイル: HitLeftCommand.cs プロジェクト: ronaldme/BlackJackR
 public HitLeftCommand(GameViewModel viewModel)
 {
     this.viewModel = viewModel;
 }
コード例 #4
0
ファイル: StandCommand.cs プロジェクト: ronaldme/BlackJackR
 public StandCommand(GameViewModel model)
 {
     viewModel = model;
 }
コード例 #5
0
ファイル: HitCommand.cs プロジェクト: ronaldme/BlackJackR
 public HitCommand(GameViewModel model)
 {
     viewModel = model;
 }
コード例 #6
0
ファイル: DealCommand.cs プロジェクト: ronaldme/BlackJackR
 public DealCommand(GameViewModel viewModel)
 {
     this.viewModel = viewModel;
 }
コード例 #7
0
ファイル: RulesCommand.cs プロジェクト: ronaldme/BlackJackR
 public RulesCommand(GameViewModel viewModel)
 {
     this.viewModel = viewModel;
 }
コード例 #8
0
 public StandRightCommand(GameViewModel viewModel)
 {
     this.viewModel = viewModel;
 }