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) + { + + } } }