63 lines
1.1 KiB
C#
63 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
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();
|
|
}
|
|
|
|
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)
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|