DateTimePickerFormat 枚举

定义

指定 DateTimePicker 控件显示的日期和时间格式。

C#
public enum DateTimePickerFormat
继承
DateTimePickerFormat

字段

名称 说明
Custom 8

DateTimePicker 控件以自定义格式显示日期/时间值。 有关详细信息,请参阅 CustomFormat

Long 1

DateTimePicker 控件以用户操作系统设置的长日期格式显示日期/时间值。

Short 2

DateTimePicker 控件以用户操作系统设置的短日期格式显示日期/时间值。

Time 4

DateTimePicker 控件以用户操作系统设置的时间格式显示日期/时间值。

示例

下面的代码示例演示如何通过将 设置为 FormatDateTimePickerFormat 值来初始化 DateTimePicker 对象。 若要运行此示例,请将以下代码粘贴到窗体中,并从窗体的构造函数或Load事件处理方法调用 InitializeDateTimePicker

C#

// 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.Format使用。

备注

实际日期/时间格式由用户操作系统中设置的日期、时间和区域设置决定。

适用于

产品 版本
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

另请参阅