C# DateTimePicker

DateTimePicker presents an interface for date selection. It allows the user to select a valid DateTime without much effort on your part. We review this control and its associated options and properties here.

DateTimePicker

Example

Lightning bolt

This example gets us started with the DateTimePicker control. Please add the DateTimePicker control to your Form, and then add the ValueChanged event handler by right-clicking on the DateTimePicker, and going to Properties; then, click the lightning bolt. Add the Form1_Load event handler by double-clicking on the Form.

Program that uses DateTimePicker [C#]

using System;
using System.Windows.Forms;

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
	public Form1()
	{
	    InitializeComponent();
	}

	private void Form1_Load(object sender, EventArgs e)
	{
	    // Initialize picker to yesterday.
	    DateTime result = DateTime.Today.Subtract(TimeSpan.FromDays(1));
	    dateTimePicker1.Value = result;
	}

	private void dateTimePicker1_ValueChanged(object sender, EventArgs e)
	{
	    // Set title bar to selected date.
	    DateTime result = dateTimePicker1.Value;
	    this.Text = result.ToString();
	}
    }
}

Result

    1. When program starts, DateTimePicker shows yesterday.
    2. When you change the date, it is shown in the title bar.

Form1_Load. This is the Load event handler for the enclosing Form. First, we get the DateTime value for yesterday. This is done with Today, Subtract, and TimeSpan. The Value property on the DateTimePicker instance is assigned to the resulting DateTime.

DateTime Examples DateTime.Today DateTime Subtract Method TimeSpan ExamplesProgramming tip

dateTimePicker1_ValueChanged. This event handler is useful on the DateTimePicker. Whenever the user changes the DateTime, this event handler is executed. In the method body, we assign the window's title text to the string representation of the DateTime that was selected.

ShowCheckBox

The ShowCheckBox property changes the DateTimePicker to display a check box on the left side of the control. The user can enable or disable the DateTimePicker this way. To see if the check box is checked, use the Checked property on the DateTimePicker instance. This property can also be assigned to.

DateTimePicker ShowCheckBox = True

Note: This control also shows the ShowUpDown property set to True.

ShowUpDown

The ShowUpDown property changes the DateTimePicker such that it displays an up and down arrow box on the right side instead of the drop down menu. It is possibly a good idea to set ShowUpDown to True when the DateTime will only need to be changed up or down by a couple units. Please see the previous screenshot.

Summary

.NET Framework information

We reviewed the DateTimePicker control in Windows Forms .NET. This control can be used with the ValueChanged event handler. You can change the ShowCheckBox and ShowUpDown properties to change how the DateTimePicker is displayed. The Value property sets or gets and the selected DateTime, while the Checked property refers to the optional check box.

Windows Forms
.NET