DateTimePickerFormat 열거형
DateTimePicker 컨트롤이 표시하는 날짜 및 시간 형식을 지정합니다.
네임스페이스: System.Windows.Forms
어셈블리: System.Windows.Forms(system.windows.forms.dll)
구문
‘선언
Public Enumeration DateTimePickerFormat
‘사용 방법
Dim instance As DateTimePickerFormat
public enum DateTimePickerFormat
public enum class DateTimePickerFormat
public enum DateTimePickerFormat
public enum DateTimePickerFormat
멤버
멤버 이름 | 설명 | |
---|---|---|
Custom | DateTimePicker 컨트롤은 사용자가 지정한 형식으로 날짜 및 시간 값을 표시합니다. | |
Long | DateTimePicker 컨트롤은 운영 체제에서 설정한 자세한 날짜 형식으로 날짜 및 시간 값을 표시합니다. | |
Short | DateTimePicker 컨트롤은 운영 체제에서 설정한 간단한 날짜 형식으로 날짜 및 시간 값을 표시합니다. | |
Time | DateTimePicker 컨트롤은 운영 체제에서 설정한 시간 형식으로 날짜 및 시간 값을 표시합니다. |
설명
이 열거형은 DateTimePicker.Format 등과 같은 멤버에서 사용됩니다.
참고
실제 날짜 및 시간 형식은 운영 체제에서 설정한 날짜, 시간 및 국가별 설정에 의해 결정됩니다.
예제
다음 코드 예제에서는 Format을 DateTimePickerFormat 값으로 설정하여 DateTimePicker 개체를 초기화하는 방법을 보여 줍니다. 이 예제를 실행하려면 폼에 다음 코드를 붙여넣고 폼의 생성자나 Load 이벤트 처리 메서드에서 InitializeDateTimePicker
를 호출합니다.
' Declare the DateTimePicker.
Friend WithEvents DateTimePicker1 As System.Windows.Forms.DateTimePicker
Private Sub InitializeDateTimePicker()
' Construct the DateTimePicker.
Me.DateTimePicker1 = New System.Windows.Forms.DateTimePicker
'Set size and location.
Me.DateTimePicker1.Location = New System.Drawing.Point(40, 88)
Me.DateTimePicker1.Size = New Size(160, 21)
' Set the alignment of the drop-down MonthCalendar to right.
Me.DateTimePicker1.DropDownAlign = LeftRightAlignment.Right
' Set the Value property to 50 years before today.
DateTimePicker1.Value = (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.
Me.Controls.Add(Me.DateTimePicker1)
End Sub
// 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);
}
internal:
// Declare the DateTimePicker.
System::Windows::Forms::DateTimePicker^ DateTimePicker1;
private:
void InitializeDateTimePicker()
{
// Construct the DateTimePicker.
this->DateTimePicker1 = gcnew System::Windows::Forms::DateTimePicker;
//Set size and location.
this->DateTimePicker1->Location = System::Drawing::Point( 40, 88 );
this->DateTimePicker1->Size = 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 );
}
// Declare the DateTimePicker.
private System.Windows.Forms.DateTimePicker dateTimePicker1;
private void InitializeDateTimePicker()
{
// Construct the DateTimePicker.
this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
//Set size and location.
this.dateTimePicker1.set_Location(new System.Drawing.Point(40, 88));
this.dateTimePicker1.set_Size(new System.Drawing.Size(160, 21));
// Set the alignment of the drop-down MonthCalendar to right.
this.dateTimePicker1.set_DropDownAlign(LeftRightAlignment.Right);
// Set the Value property to 50 years before today.
dateTimePicker1.set_Value(System.DateTime.get_Now().AddYears(-50));
//Set a custom format containing the string "of the year"
dateTimePicker1.set_Format(DateTimePickerFormat.Custom);
dateTimePicker1.set_CustomFormat("MMM dd, 'of the year' yyyy ");
// Add the DateTimePicker to the form.
this.get_Controls().Add(this.dateTimePicker1);
} //InitializeDateTimePicker
플랫폼
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework에서 모든 플래폼의 모든 버전을 지원하지는 않습니다. 지원되는 버전의 목록은 시스템 요구 사항을 참조하십시오.
버전 정보
.NET Framework
2.0, 1.1, 1.0에서 지원
.NET Compact Framework
2.0에서 지원