From 53b48764ffff57e1b9ca6298af68eef9a3bad80f Mon Sep 17 00:00:00 2001 From: Michael Robles Date: Sun, 9 Jun 2024 16:39:59 -0700 Subject: [PATCH] diseno ux --- Ventas/Importe1.Designer.cs | 1 + Ventas/Importe1.cs | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/Ventas/Importe1.Designer.cs b/Ventas/Importe1.Designer.cs index c4fecb8..d9dc6f3 100644 --- a/Ventas/Importe1.Designer.cs +++ b/Ventas/Importe1.Designer.cs @@ -43,6 +43,7 @@ this.panelImporte.Name = "panelImporte"; this.panelImporte.Size = new System.Drawing.Size(903, 448); this.panelImporte.TabIndex = 1; + this.panelImporte.Paint += new System.Windows.Forms.PaintEventHandler(this.panelImporte_Paint); // // pictureBox2 // diff --git a/Ventas/Importe1.cs b/Ventas/Importe1.cs index 6f42eef..ce43c0b 100644 --- a/Ventas/Importe1.cs +++ b/Ventas/Importe1.cs @@ -189,5 +189,10 @@ namespace compabetov2.Ventas ventanaPadre.actualizarImporteTotal(); this.Close(); } + + private void panelImporte_Paint(object sender, PaintEventArgs e) + { + + } } }