The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
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