Hi
Is there a way to disable the highlighting of the last selected button?
With:
private void button_changebackcolor(object sender, System.EventArgs e)
{
if(((Telerik.WinControls.UI.RadButton)sender).BackColor != System.Drawing.Color.White)
{
((Telerik.WinControls.UI.RadButton)sender).BackColor = System.Drawing.Color.White;
}
}
it's possible, but that makes problem with my real program, because sometimes I need to highlight a button with yellow and button_changebackcolor overrrides that.
Thank you in Advance
Kind Regards,
Dominik