Radio buttons - change colour when selected, deselected and hovering

Sorry to be a pain but I was wondering if someone would be able to give me a few pointers on how to change the colour of a radio button when selected, deselected and hovered over. So far I've been using got focus, lost focus and mouse hover but I dont think thats quite right. My objective was to change the colour of radio boxes selected from different group boxes to enable the user to see what they have selected. Any help would be greatley appreciated.

Comments

  • You should change TRadioButton.BackColor value in events you want, depending on rb state...

    something like


    If RadioButton1.Checked = True Then RadioButton1.BackColor = Color.Aqua
    Else RadioButton1.Checked = False then RadioButton1.BackColor = Color.Green
    End If

    http://www.onedevteam.com/
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Categories

In this Discussion