如何能将Calendar控件上边的三角形按钮禁用

怎么能将Calendar控件上边的三角形按钮禁用RT就是把月份固定住,只能用当月的。[解决办法]自己写一个好了,也

怎么能将Calendar控件上边的三角形按钮禁用
RT 就是把月份固定住,只能用当月的。

[解决办法]
自己写一个好了,也不是很难
[解决办法]
DateTime startDate = DateTime.Now.AddDays(1 - DateTime.Now.Day); ;
 DateTime endDate = startDate.AddMonths(1).AddDays(-1); ;
 this.calendar1.DisplayDateStart = startDate;
 this.calendar1.DisplayDateEnd = endDate;