24

如何将Datetimepicker-Format 设置为 MM/YYYY?

4

4 回答 4

55

使用DateTimerPicker.Format财产。查看MSDN

public void SetMyCustomFormat()
{
   // Set the Format type and the CustomFormat string.
   dateTimePicker1.Format = DateTimePickerFormat.Custom;
   dateTimePicker1.CustomFormat = "MM/yyyy";
}
于 2012-04-13T07:47:01.830 回答
16

您可以使用DateTimerPicker.Format以下属性:

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

注意:DateTimerPicker.ShowUpDown = true;用于使日历不可见

于 2016-07-05T11:11:37.463 回答
5

这将为您提供更多选项来显示具有差异格式的日期。

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

以下是在 Windows 应用程序 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”的格式给出日期

于 2018-08-09T12:19:14.753 回答
-3

这条线对我有用

DateTimePicker1.Value.ToString("MMMM dd yyyy")

输出:2019 年 8 月

于 2019-08-07T01:38:01.603 回答