An empty page that can be used on its own or navigated to within a Frame.
Inheritance: Page
Esempio n. 1
0
 public Menu(BlackJack blackJack)
 {
     InitializeComponent();
     this.m_blackJack = blackJack;
 }
Esempio n. 2
0
 private void insuranceCheck()
 {
     BlackJack.enableInsurance();
 }
Esempio n. 3
0
 static void Main(string[] args)
 {
     BlackJack newGame = new BlackJack(new ConsoleTerminal());
     newGame.go();
 }
 private void btnProfile_Click(object sender, EventArgs e)
 {
     BlackJack.disableInsurance();
     game.dealerBlackJack();
 }
Esempio n. 5
0
 static void Main(string[] args)
 {
     BlackJack blackJack = new BlackJack();
 }
Esempio n. 6
0
 public void TakeCard()
 {
     hand.Add(BlackJack.TakeCardFromDeck());
     sum = GetCount();
 }