Ejemplo n.º 1
0
 private void orderBtn_Click(object sender, EventArgs e)
 {
     if (pizzaName != "")
     {
         pizza = new Pizza(pizzaName);
         GatherTimer.Start();
         setLabel();
     }
     else
     {
         MessageBox.Show("Please select a pizza");
     }
 }