Пример #1
0
 private void Button_Click(object sender, RoutedEventArgs e)
 {
     b = new Bingo();
     b.Iniciar(int.Parse(txt.Text));
     txtNum.Text  = "";
     txtNums.Text = "";
 }
Пример #2
0
 private void IniciarClick(object sender, RoutedEventArgs e)
 {
     b.Iniciar(int.Parse(txtNB.Text));
     txtNum.Text          = "";
     txtNums.Text         = "";
     btnIniciar.IsEnabled = false;
     btnSortear.IsEnabled = true;
 }
Пример #3
0
 private void Button_Click_1(object sender, RoutedEventArgs e)
 {
     a = new Bingo();
     a.Iniciar(int.Parse(txt.Text));
 }