DateTimePicker.Format 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定控制項中,日期和時間顯示的格式。
public:
property System::Windows::Forms::DateTimePickerFormat Format { System::Windows::Forms::DateTimePickerFormat get(); void set(System::Windows::Forms::DateTimePickerFormat value); };
public System.Windows.Forms.DateTimePickerFormat Format { get; set; }
member this.Format : System.Windows.Forms.DateTimePickerFormat with get, set
Public Property Format As DateTimePickerFormat
屬性值
其中一個 DateTimePickerFormat 值。 預設為 Long。
例外狀況
所指派的值不是其中一個 DateTimePickerFormat 值。
範例
下列程式碼範例會設定 CustomFormat 屬性,讓 DateTimePicker 將日期顯示為 「2001 年 6 月 1 日 - 星期五」。 此程式碼假設 已在 上 Form 建立 控制項的 DateTimePicker 實例。
public:
void SetMyCustomFormat()
{
// Set the Format type and the CustomFormat string.
dateTimePicker1->Format = DateTimePickerFormat::Custom;
dateTimePicker1->CustomFormat = "MMMM dd, yyyy - dddd";
}
public void SetMyCustomFormat()
{
// Set the Format type and the CustomFormat string.
dateTimePicker1.Format = DateTimePickerFormat.Custom;
dateTimePicker1.CustomFormat = "MMMM dd, yyyy - dddd";
}
Public Sub SetMyCustomFormat()
' Set the Format type and the CustomFormat string.
dateTimePicker1.Format = DateTimePickerFormat.Custom
dateTimePicker1.CustomFormat = "MMMM dd, yyyy - dddd"
End Sub
備註
這個屬性會決定日期顯示的日期/時間格式。 日期/時間格式是以使用者的作業系統中的地區設定為基礎。
注意
屬性 Format 必須設定 DateTimePickerFormat.Custom CustomFormat 為 ,屬性才能影響所顯示日期和時間的格式。
若要只在 中 DateTimePicker 顯示時間,請將 設定為 Time ,並將 ShowUpDown 屬性設定 Format 為 true
。