寻找.net winform的月/年选择器控件

时间:2009-10-22 17:38:13

标签: c# .net winforms

我正在为.net 2 winform寻找一个月选择器控件。

1 个答案:

答案 0 :(得分:45)

使用DateTimePicker。您可以使用custom format启用指定的月份和年份。

示例:

DateTimePicker dateTimePicker1 = new DateTimePicker();
dateTimePicker1.Format = DateTimePickerFormat.Custom;
dateTimePicker1.CustomFormat = "MM yyyy";
dateTimePicker1.ShowUpDown = true; // to prevent the calendar from being displayed

有关详细信息,请参阅this MSDN article

修改
要阻止显示日历,请将ShowUpDown上的DateTimePicker属性设置为true。这将阻止显示日历,并且(与CustomFormat一起使用)允许您使用向上/向下按钮设置月份和年份。