bajar cambios

This commit is contained in:
Michael Robles
2024-07-07 11:24:11 -07:00
parent 637fafc656
commit e04f2b793a
10 changed files with 6 additions and 4 deletions
+5 -3
View File
@@ -26,6 +26,7 @@ namespace compabetov2
{
private int numeroPagina = 1; // Variable para rastrear el número de página actual
private Point lastPoint;
private Point lastAutoScrollPosition;
private List<Variante> productos;
public decimal total = 0;
private LoginModel loginPrincipal;
@@ -40,6 +41,7 @@ namespace compabetov2
getData();
llenarLayout();
llenarComBox();
InitializeFlowLayout();
this.loginPrincipal = loginPrincipal;
}
@@ -57,7 +59,7 @@ namespace compabetov2
private void FlowLayoutPanel3_MouseDown(object sender, MouseEventArgs e)
{
lastPoint = new Point(e.X, e.Y);
flowLayoutPanel3.Capture = true;
flowLayoutPanel3.Capture = false;
}
private void FlowLayoutPanel3_MouseMove(object sender, MouseEventArgs e)
@@ -76,9 +78,9 @@ namespace compabetov2
private void FlowLayoutPanel3_MouseUp(object sender, MouseEventArgs e)
{
lastPoint = new Point(e.X, e.Y);
flowLayoutPanel3.Capture = true;
flowLayoutPanel3.Capture =false;
}