This topic has not yet been rated - Rate this topic

DateTimePicker.DropDownAlign Property

Gets or sets the alignment of the drop-down calendar on the DateTimePicker control.

Namespace:  System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)
public LeftRightAlignment DropDownAlign { get; set; }

Property Value

Type: System.Windows.Forms.LeftRightAlignment
The alignment of the drop-down calendar on the control. The default is Left.
ExceptionCondition
InvalidEnumArgumentException

The value assigned is not one of the LeftRightAlignment values.

The drop-down calendar can be aligned to the left or right of the control.

The following code example demonstrates initializing a DateTimePicker by setting the DropDownAlign, Value, Format, and CustomFormat properties. To run this example, paste the following code into a form and call InitializeDateTimePicker from the form's constructor or Load event-handling method.


	// Declare the DateTimePicker. 
	internal System.Windows.Forms.DateTimePicker DateTimePicker1;


	private void InitializeDateTimePicker()
	{
		// Construct the DateTimePicker. 
		this.DateTimePicker1 = new System.Windows.Forms.DateTimePicker();

		//Set size and location. 
		this.DateTimePicker1.Location = new System.Drawing.Point(40, 88);
		this.DateTimePicker1.Size = new System.Drawing.Size(160, 21);

		// Set the alignment of the drop-down MonthCalendar to right. 
		this.DateTimePicker1.DropDownAlign = LeftRightAlignment.Right;

		// Set the Value property to 50 years before today.
		DateTimePicker1.Value = System.DateTime.Now.AddYears(-50);

		//Set a custom format containing the string "of the year"
		DateTimePicker1.Format = DateTimePickerFormat.Custom;
		DateTimePicker1.CustomFormat = "MMM dd, 'of the year' yyyy ";

		// Add the DateTimePicker to the form. 
		this.Controls.Add(this.DateTimePicker1);
	}
	DateTimePicker object by setting the DropDownAlign, Value, Format, and 
	CustomFormat properties.  To run this example paste the following
	code in a form containing a DateTimePicker named DateTimePicker1.

.NET Framework

Supported in: 4.5, 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.