是否可以使DateTimePicker
的复选框显示为平?
修改
根据以下链接,我在OverrideDropDown
方法中添加了以下代码:
if (this.ShowCheckBox)
{
ButtonState state = this.Checked ? ButtonState.Checked : ButtonState.Inactive;
Rectangle rect = new Rectangle(3, 3, CheckBoxWidth, this.Height - 6);
ControlPaint.DrawCheckBox(g, rect, ButtonState.Flat | state);
}
但是,复选框没有被平放。