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 WindowsFormsApplication5
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
private void monthCalendar1_DateChanged(object sender, DateRangeEventArgs e)
{
label1.Text = "Selected Date: " + e.Start.ToShortDateString();
label1.Text = "Selected Date: " + e.Start.ToString("dddd, MMMM dd, yyyy");
}
private void label1_Click(object sender, EventArgs e)
{
label1.ForeColor = Color.Red;
label1.Font = new Font("Arial", 12, FontStyle.Bold);
label1.BackColor = Color.LightYellow;
}
}
}