web-dev-qa-db-ja.com

Datetimepickerを月と年のみの形式に設定する方法は?

Datetimepicker- FormatをMM/YYYYに設定するにはどうすればよいですか?

20
asdasdad

使用する DateTimerPicker.Formatプロパティ。チェック [〜#〜] msdn [〜#〜]

public void SetMyCustomFormat()
{
   // Set the Format type and the CustomFormat string.
   dateTimePicker1.Format = DateTimePickerFormat.Custom;
   dateTimePicker1.CustomFormat = "MM/yyyy";
}
47
ABH

次のようにDateTimerPicker.Formatプロパティを使用できます。

DateTimerPicker.Format = DateTimePickerFormat.Custom;
DateTimerPicker.CustomFormat = "MMMM yyyy";
DateTimerPicker.ShowUpDown = true;

注:DateTimerPicker.ShowUpDown = true;は、カレンダーを非表示にするためのものです

12

これにより、日付をdiff形式で表示するためのオプションがいくつか提供されます。

DateTimerPicker.Format = DateTimePickerFormat.Custom;
DateTimerPicker.CustomFormat = "MM/yyyy"; // this line gives you only the month and year.
DateTimerPicker.ShowUpDown = true;

以下は、Windows applciation C#の日付時刻ピッカーコントロールで日付のみを表示するためのさまざまな形式です。

DateTimerPicker.CustomFormat = "MMMM yyyy";

上記のコードは、「August 2018」のような完全な月名と年を表示します

DateTimerPicker.CustomFormat = "MMMM yyyy";

上記のコードは、「2018年8月8日」のような完全な月名、日付、年を表示します

DateTimerPicker.CustomFormat = "dd MM yyyy";

この行は、スラッシュ「08 08 2018」のない指定された形式の日付を提供します

DateTimerPicker.CustomFormat = "dd/MM/yyyy";

この行は、日付 "08/08/2018"までのより具体的な形式を提供します

DateTimerPicker.CustomFormat = "dd/MMM/yyyy";

この行は、「08/Aug/2018」の形式で日付を示します

1
Gopi P