英語で読む

次の方法で共有


DateTimePickerFormat 列挙型

定義

DateTimePicker コントロールに表示する日時の書式を指定します。

C#
public enum DateTimePickerFormat
継承
DateTimePickerFormat

フィールド

名前 説明
Custom 8

DateTimePicker コントロールは、日付/時刻値をカスタム書式で表示します。 詳細については、「CustomFormat」を参照してください。

Long 1

DateTimePicker コントロールは、ユーザーのオペレーティング システムで設定されている長い日付書式で日付/時刻値を表示します。

Short 2

DateTimePicker コントロールは、ユーザーのオペレーティング システムで設定されている短い日付書式で日付/時刻値を表示します。

Time 4

DateTimePicker コントロールは、ユーザーのオペレーティング システムで設定されている時刻の書式で日付/時刻値を表示します。

次のコード例では、 を 値に DateTimePicker 設定 Format してオブジェクトを初期化する方法を DateTimePickerFormat 示します。 この例を実行するには、次のコードをフォームに貼り付け、フォームのコンストラクターまたは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

こちらもご覧ください