diseno ux

This commit is contained in:
Michael Robles
2024-06-09 16:39:59 -07:00
parent fd5db02c1c
commit 53b48764ff
2 changed files with 6 additions and 0 deletions
+1
View File
@@ -43,6 +43,7 @@
this.panelImporte.Name = "panelImporte"; this.panelImporte.Name = "panelImporte";
this.panelImporte.Size = new System.Drawing.Size(903, 448); this.panelImporte.Size = new System.Drawing.Size(903, 448);
this.panelImporte.TabIndex = 1; this.panelImporte.TabIndex = 1;
this.panelImporte.Paint += new System.Windows.Forms.PaintEventHandler(this.panelImporte_Paint);
// //
// pictureBox2 // pictureBox2
// //
+5
View File
@@ -189,5 +189,10 @@ namespace compabetov2.Ventas
ventanaPadre.actualizarImporteTotal(); ventanaPadre.actualizarImporteTotal();
this.Close(); this.Close();
} }
private void panelImporte_Paint(object sender, PaintEventArgs e)
{
}
} }
} }