private void btnAgregar_Click(object sender, EventArgs e)
 {
     if (OnAgregarComida != null)
     {
         OnAgregarComida.Invoke(tBxComida.Text, Convert.ToInt32(tBxCarbo.Text), Convert.ToInt32(tBxProt.Text), Convert.ToInt32(tBxGras.Text));
     }
 }
 private void button1_Click(object sender, EventArgs e)
 {
     if (OnAgregarComida != null)
     {
         OnAgregarComida.Invoke(nombreTextBox.Text, Int32.Parse(proteinasTextBox.Text), Int32.Parse(carbohidratosTextBox.Text), Int32.Parse(grasasTextBox.Text));
     }
 }
 private void button1_Click(object sender, EventArgs e)
 {
     if (OnAgregarComida != null)
     {
         OnAgregarComida.Invoke(NombreBox.Text, Int32.Parse(ProteinasBox.Text), Int32.Parse(GrasasBox.Text), Int32.Parse(CarbohidratosBox.Text));
     }
 }
Example #4
0
 private void AgregarBoton_Click(object sender, EventArgs e)
 {
     if (OnAgregarComida != null)
     {
         OnAgregarComida.Invoke(NombreTexto.Text, int.Parse(CarbohidratosTexto.Text), int.Parse(ProteinasTexto.Text), int.Parse(GrasasTexto.Text));
     }
 }
Example #5
0
 private void AgregarButton_Click(object sender, EventArgs e)
 {
     if (OnAgregarComida != null)
     {
         OnAgregarComida.Invoke(nombreTextBox.Text, proteinasTextBox.Text, grasasTextBox.Text, CarbohidratosTextBox.Text);
     }
 }
 private void Agregar_button1_Click(object sender, EventArgs e)
 {
     if (OnAgregarComida != null)
     {
         OnAgregarComida.Invoke(Nombre_textBox1.Text, Convert.ToInt32(Carbohidratos_textBox3.Text), Convert.ToInt32(Proteinas_textBox1.Text), Convert.ToInt32(Grasas_textBox2.Text));
     }
 }
Example #7
0
 private void agregarButton_Click(object sender, EventArgs e)
 {
     if (OnAgregarComida != null)
     {
         // Notificar a los suscritos
         OnAgregarComida.Invoke(nombreTextBox.Text, carbohidratosNumeric.Value, proteinasNumeric.Value, grasasNumeric.Value);
     }
 }
 private void button1_Click(object sender, EventArgs e)
 {
     // hay suscritos?
     if (OnAgregarComida != null)
     {
         // Notificar a los suscritos
         OnAgregarComida.Invoke(nombreTextBox.Text, proteinaTextBox.Text, grasaTextBox.Text, carbohidratoTextBox.Text);
     }
 }
 private void BotonAgregar_Click(object sender, EventArgs e)
 {
     if (OnAgregarComida != null)
     {
         OnAgregarComida.Invoke(nametxt.Text, double.Parse(protetxt.Text), double.Parse(carbtxt.Text), double.Parse(grasatxt.Text));
         protetxt.Clear();
         nametxt.Clear();
         carbtxt.Clear();
         grasatxt.Clear();
     }
 }
Example #10
0
        private void agregarButton_Click(object sender, EventArgs e)
        {
            string nombre = nombreText.Text;
            int    c      = (int)carbohidratosNum.Value;
            int    p      = (int)proteinasNum.Value;
            int    g      = (int)grasasNum.Value;

            if (OnAgregarComida != null)
            {
                OnAgregarComida.Invoke(nombre, c, p, g);
            }
        }
 private void agregar_Click(object sender, EventArgs e)
 {
     if (OnAgregarComida != null)
     {
         OnAgregarComidaArgs comidaArgs = new OnAgregarComidaArgs();
         comidaArgs.carbohidratos = carbohidrato.Text;
         comidaArgs.nombre        = nombre.Text;
         comidaArgs.proteinas     = proteinaBox.Text;
         comidaArgs.grasas        = grasa.Text;
         OnAgregarComida.Invoke(sender, comidaArgs);
     }
 }
Example #12
0
        private void button1_Click(object sender, EventArgs e)
        {
            string nombre        = textBox1.Text;
            int    proteinas     = Convert.ToInt16(textBox2.Text);
            int    grasas        = Convert.ToInt16(textBox3.Text);
            int    carbohidratos = Convert.ToInt16(textBox4.Text);

            if (OnAgregarComida != null)
            {
                OnAgregarComida.Invoke(nombre, proteinas, carbohidratos, grasas);
            }
            textBox1.Clear();
            textBox2.Clear();
            textBox3.Clear();
            textBox4.Clear();
        }