我正在为.net 2 winform寻找一个月选择器控件。
答案 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
一起使用)允许您使用向上/向下按钮设置月份和年份。