Ejemplo n.º 1
0
 public BullsAndCowsGame()
 {
     InitializeComponent();
     bac             = new BullsAndCowsClass(this);
     bac.CheckEvent += BullsOnCheckEvent;
     DataContext     = bac;
 }
Ejemplo n.º 2
0
 private void BullsOnCheckEvent(string s)
 {
     MessageBox.Show(s);
     bac         = new BullsAndCowsClass(this);
     DataContext = bac;
 }