RobinPerris / DarkUI

Dark themed control and docking library for .NET WinForms.
MIT License
834 stars 185 forks source link

DarkComboBox disabled text color incorrect #39

Open Kyle-Lancaster opened 3 years ago

Kyle-Lancaster commented 3 years ago

When DarkComboBox is disabled the text is still the same white color as enabled text, but it should be a darker grey color.

image

danielj23 commented 3 years ago

In DarkComboBox.cs

Line 117 add var disabledColor = Colors.DisabledText;

Line 140 add

if (!Enabled) { textColor = disabledColor; }