How do I get a DoubleClick event in a .NET radio button?
I'd like to be able to catch the DoubleClick or MouseDoubleClick events from a standard winforms radio button, but they seem to be hidden and not working. At the moment I have code like this: public class RadioButtonWithDoubleClick : RadioButton { public RadioButtonWithDoubleClick() : base() { this.SetStyle( ControlStyles.StandardClick | ControlStyles.StandardDoubleClick, true ); } [EditorBrowsable( EditorBrowsableState.Always ), Browsable( true )] public new event MouseEventHandler MouseDoubleClick; protected override void OnMouseDoubleClick( MouseEventArgs e ) { MouseEventHandler temp =