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 DisSemana_III_Forms
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
int year, month, day;
string dia, mes, año;
private void button2_Click(object sender, EventArgs e)
{
Application.Exit();
}
private void button1_Click(object sender, EventArgs e)
{
year = int.Parse(año);
month = int.Parse(mes);
day = int.Parse(dia);
DateTime fecha = new DateTime(year, month, day);
textBox4.Text = (fecha.ToString("dddd"));
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
dia = textBox1.Text;
}
private void textBox2_TextChanged(object sender, EventArgs e)
{
mes = textBox2.Text;
}
private void textBox3_TextChanged(object sender, EventArgs e)
{
año = textBox3.Text;
}
}
}
No hay comentarios:
Publicar un comentario
Nota: solo los miembros de este blog pueden publicar comentarios.