Question Changing Label Colour

kylegee

Member
Joined
Sep 9, 2008
Messages
10
Programming Experience
Beginner
I have 200 labels within a windows form that change colours throughout the operation of my program.

Is there an object or something that stores the orginal colour of the label(s), so at a press of a button I can revert them to their orginal state?


Thanks
 
Not built in, but the default ForeColor is SystemColors.ControlText and the default BackColor is SystemColors.Control
 
Back
Top