More Radio buttons

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

using VB in the compact framework i would like to put multiple colors behind
radiobuttons, seams that no matter how i put the colors in it is ignored or
defaulted to the first colour in the set i have also tried overlaying colored
panels but this does not work either.

cheers
 
Starting from SP1, MS has added support for back/fore colors for standard
controls during the run-time. So in order to have the certain back color for
your radio button you'd need to assign it in the code:

radioButton1.BackColor = Color.Yellow
 
Hi Alex,

I have a similar problem. When I set enable to false the radio button and
text color is set to gray. I would like to keep the original color. I set
the backcolor and forecolor in code to a color in both the form load event
and under button click event and nothing changes. If you have any
suggestions.

-jose
 
Back
Top