如何dateTimePicker的设置月份和年份只有格式?(How to set Datetimep

2019-06-23 14:42发布

我怎样才能设置Datetimepicker -format以MM / YYYY?

Answer 1:

使用DateTimerPicker.Format财产。 检查MSDN

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


Answer 2:

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

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

注: DateTimerPicker.ShowUpDown = true; 是制作日历不可见



Answer 3:

这会给你一些选项来显示日期与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";

上面的代码将显示完整的月份名称和年份,如“2018八月”

DateTimerPicker.CustomFormat = "MMMM yyyy";

上面的代码将显示完整的月份名称,日期和年份,如“2018 08月08日”

DateTimerPicker.CustomFormat = "dd MM yyyy";

此行会给与了指定格式的日期正斜杠“08 08 2018”

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

这条线将给出更具体的格式的日期“2018年8月8日”

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

在格式此行给定日期“08/8/2018”



文章来源: How to set Datetimepicker to Month and Year only format?