摘要: public class CalendarColumn : DataGridViewColumn { private bool showUpDown = true; public bool ShowUpDown { get { return showUpDown; } set { showUpDown = value; } } public CalendarColumn() : base(new CalendarCell()) { } public override DataGridViewCell CellTemplate { get { return base.CellTemplate; 阅读全文
posted @ 2013-06-08 16:21 RichZhang 阅读(510) 评论(0) 推荐(0) 编辑