private void button1_Click(object sender, EventArgs e) { if (textBoxNombre.Text.Any() || textBoxPrecio.Text.Any()) { if (Mensaje.mensajePregunta("seguro quieres salir sin guardar?", "seguro desea salir?")) { this.Close(); menu.RecargarTabla(); } } else { this.Close(); } }
private void aceptar_Click(object sender, EventArgs e) { //string nombre = textBoxNombre.Text; //string precio = textBoxPrecio.Text; //bool sinTacc = checkBoxSinTACC.Checked; //bool vegetariano = checkBoxVegetariano.Checked; if (!hayCamposVacios()) { if (esFloat(textBoxPrecio.Text)) { string nombre = textBoxNombre.Text; bool vegetariano = checkBoxVegetariano.Checked; bool sinTACC = checkBoxSinTACC.Checked; string precio = textBoxPrecio.Text; Conexion.editarComida(id, nombre, precio, sinTACC, vegetariano); Mensaje.mensajeError("se agrego con exito"); vaciarCampos(); menu.RecargarTabla(); } else { Mensaje.mensajeError("El precio ingresado debe ser flotante"); } } else { Mensaje.mensajeError("hay campos vacios"); } }