Exemplo n.º 1
0
 /// <summary>
 /// Click no botão ligar
 /// </summary>
 private void Ligar_SimpleButton_Click(object sender, EventArgs e)
 {
     isPause = false;
     if (Context.PreConfigurada == 0)
     {
         if (isPotencia)
         {
             Context.Potencia    = Context.Visor;
             Context             = ModeloController.ValidarPotencia(Context);
             Visor_MemoEdit.Text = Context.Visor;
             Resetar();
         }
         else if (isTempo || int.TryParse(Context.Visor, out int tmpTempo))
         {
             Context.Tempo       = Context.Visor;
             Context             = ModeloController.ValidarTempo(Context);
             Visor_MemoEdit.Text = Context.Visor;
             Resetar();
         }
         else
         {
             Context = ModeloController.Validar(Context);
             Aquecendo();
         }
     }
     else
     {
         Context = ModeloController.ValidarPreConfiguradas(Context);
         Aquecendo();
     }
 }