W windy May 19, 2007 #1 I would like to change the backcolor inside the checkbox when the component is on focus, not the color of the text. Thanks a lot.
I would like to change the backcolor inside the checkbox when the component is on focus, not the color of the text. Thanks a lot.
G Guest May 19, 2007 #2 In the Enter event of the check box have: checkBox1.BackColor = Color.Red; // Any color you want on focus And in the Leave event of the check box: checkBox1.BackColor = SystemColors.Control; Hope this helps?
In the Enter event of the check box have: checkBox1.BackColor = Color.Red; // Any color you want on focus And in the Leave event of the check box: checkBox1.BackColor = SystemColors.Control; Hope this helps?