Files
compabetoOG/mermas.cs
T
2024-01-16 01:25:03 -07:00

49 lines
1.0 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 mermas : Form
{
public mermas()
{
InitializeComponent();
}
private void mermas_Load(object sender, EventArgs e)
{
}
private void horafecha_Tick(object sender, EventArgs e)
{
}
private void horafecha_Tick_1(object sender, EventArgs e)
{
}
private void horafecha_Tick_2(object sender, EventArgs e)
{
lblhora.Text = DateTime.Now.ToString("h:mm:ss");
lblfecha.Text = DateTime.Now.ToLongDateString();
}
private void button1_Click(object sender, EventArgs e)
{
MenuPrincipal menuPrincipal = new MenuPrincipal();
menuPrincipal.Show();
this.Dispose(true);
}
}
}