private void btnEliminarProducto_Click(object sender, EventArgs e) { PantallaPedirInformación temp = new PantallaPedirInformación(); bool Cancelado = true; RegistroProducto ProductoAEliminar = temp.PedirProducto(out Cancelado); if (!Cancelado) { if (ProductoAEliminar == null) { if (DialogResult.Yes == MessageBox.Show("No se encontró el producto a eliminar\n\n¿desea ver una lista de todos los productos?", "AVISO", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1)) { btnModificarProducto_Click(sender, e); } } else { if (!Validar.ValidarUnaPantalla(new PantallaEliminarProducto(null).GetType())) { Interface = new InterfaceUsuario(this); Interface.DesplegarPantallaEliminarProducto(ProductoAEliminar, null); } } } }