SE CORRIGIO LA FOTO

This commit is contained in:
Michael Robles
2024-06-30 06:56:57 -07:00
parent f04058a7e0
commit 2e69c4df3b
10 changed files with 87 additions and 67 deletions
+2
View File
@@ -113,6 +113,7 @@
this.button2.TabIndex = 9;
this.button2.Text = "Reportes";
this.button2.UseVisualStyleBackColor = false;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// button3
//
@@ -149,6 +150,7 @@
this.button5.TabIndex = 12;
this.button5.Text = "Salir";
this.button5.UseVisualStyleBackColor = false;
this.button5.Click += new System.EventHandler(this.button5_Click);
//
// AdminPanel
//
+14 -1
View File
@@ -195,7 +195,20 @@ namespace compabetov2.admin
agregarproducto.Show();
}
private void button2_Click(object sender, EventArgs e)
{
Estadiscticas estadiscticas = new Estadiscticas();
estadiscticas.Show();
}
private void button5_Click(object sender, EventArgs e)
{
login login = new login();
login.ShowDialog();
this.Dispose();
}
}