When I place a RadLabel on a form and a button which toggles the enabled state of the label:
The forecolor of the text in the label is initially the ForeColor property of the label.
When the button is clicked once, the text color changes to gray.
When the button is clicked again, the text color changes to a slightly darker shade of gray.
I would expect re-enabling the label to restore the initial ForeColor, why is this not the case?
radLabel1.Enabled = !radLabel1.Enabled;
The forecolor of the text in the label is initially the ForeColor property of the label.
When the button is clicked once, the text color changes to gray.
When the button is clicked again, the text color changes to a slightly darker shade of gray.
I would expect re-enabling the label to restore the initial ForeColor, why is this not the case?