RobinPerris / DarkUI

Dark themed control and docking library for .NET WinForms.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DarkComboBox disabled text color incorrect

Kyle-Lancaster opened this issue · comments

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

image

In DarkComboBox.cs

Line 117 add
var disabledColor = Colors.DisabledText;

Line 140 add

if (!Enabled)
{
textColor = disabledColor;
}