Nuevos Cambios

This commit is contained in:
Michael Robles
2024-01-03 22:14:24 -07:00
parent 55ae2ea079
commit 0bb28bfcf6
24 changed files with 248 additions and 483 deletions
+38 -1
View File
@@ -11,7 +11,17 @@ using System.Windows.Forms;
namespace compabetov2
{
public partial class vender : Form
{
private int cantidad = 0;
private bool masBtnPresionado = false;
private bool menosBtnPresionado = false;
public vender()
{
InitializeComponent();
@@ -20,6 +30,33 @@ namespace compabetov2
private void vender_Load(object sender, EventArgs e)
{
}
private void lblhora_Click(object sender, EventArgs e)
{
}
private void lblfecha_Click(object sender, EventArgs e)
{
}
private void horafecha_Tick(object sender, EventArgs e)
{
lblhora.Text = DateTime.Now.ToString("h:mm:ss");
lblfecha.Text = DateTime.Now.ToLongDateString();
}
private void cervezasgb_Enter(object sender, EventArgs e)
{
}
}
}
}