In .NET C# 3.5 Winforms, I have a user control with some simple child controls such as textboxes, labels, and buttons. Currently when I set the .Enabled
property of the user control to false, the controls dim accordingly. However, if I use a custom .BackColor
for the user control, sometimes the dimming is not as apparent as I would prefer.
Is there a way to specify or change the dimming color of the user control when .Enabled
is set to false? Or on a related note, is there a way I can call a method when this happens?