While creating my awesome Matching Game;) I found a problem that is completely unattainable.
When a player selects two tags with symbols on them, I want to block all other tags for 4 seconds.
But when I do this, the forecolor of all the shortcuts changes to gray, and the characters are visible. My question is: is there a way to change the ForeColor disabled label in visual C #?
The project is a WinForm application.
At the moment, I set the color of the label in the code as follows:
label1.ForeColor = lable1.BackColor;
When a user clicks on a shortcut, I change it to:
lable1.ForeColor = Color.Black;
Mqati
source share