Hi!
Can I change the backColor of the DateTimePickerExt, when the Control is enabled=false?
With a ComboBox, i make it with the fallowing Code (this Code won't work with DateTimePickerExt :-(():
protected override void OnEnabledChanged(EventArgs e) {
base.OnEnabledChanged(e);
if(!this.Enabled) {
this.BackColor = Win.BackColorDisabled;
this.ForeColor = Win.ForeColorDisabled;
}
else {
this.BackColor = Win.BackColorEnabled;
this.ForeColor = Win.ForeColorEnabled;
}
}
Is there a way to make this with DateTimePickerExt?
Thanks
Thomas