Vietpad.NET.Controls.ToolStripRadioButtonMenuItem.OnClick C# (CSharp) Method

OnClick() protected method

protected OnClick ( EventArgs e ) : void
e System.EventArgs
return void
        protected override void OnClick(EventArgs e)
        {
            // If the item is already in the checked state, do not call 
            // the base method, which would toggle the value. 
            if (Checked) return;

            base.OnClick(e);
        }