DateTimePickerFormat 열거형
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
DateTimePicker 컨트롤이 표시하는 날짜 및 시간 서식을 지정합니다.
public enum class DateTimePickerFormat
public enum DateTimePickerFormat
type DateTimePickerFormat =
Public Enum DateTimePickerFormat
- 상속
필드
Custom | 8 | DateTimePicker 컨트롤은 사용자가 지정한 서식으로 날짜 및 시간 값을 표시합니다. 자세한 내용은 CustomFormat를 참조하세요. |
Long | 1 | DateTimePicker 컨트롤은 운영 체제에서 설정한 자세한 날짜 서식으로 날짜 및 시간 값을 표시합니다. |
Short | 2 | DateTimePicker 컨트롤은 운영 체제에서 설정한 간단한 날짜 서식으로 날짜 및 시간 값을 표시합니다. |
Time | 4 | DateTimePicker 컨트롤은 운영 체제에서 설정한 시간 서식으로 날짜 및 시간 값을 표시합니다. |
예제
다음 코드 예제에서는 초기화 하는 방법을 보여 줍니다는 DateTimePicker 설정 하 여 개체를 Format 에 DateTimePickerFormat 값입니다. 호출을 폼에 다음 코드를 붙여넣고가이 예제를 실행 하려면 InitializeDateTimePicker
폼의 생성자에서 또는 Load 이벤트 처리 메서드.
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.
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);
}
' 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
설명
이 열거형 멤버와 같은 사용은 DateTimePicker.Format합니다.
참고
실제 날짜/시간 형식 날짜, 시간 및 사용자의 운영 체제의 국가별 설정에서 결정 됩니다.
적용 대상
추가 정보
.NET