0% found this document useful (0 votes)
1 views1 page

Calender Control

Uploaded by

preethivmadappa
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
1 views1 page

Calender Control

Uploaded by

preethivmadappa
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 1

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;
}
}
}

You might also like