ComponentFactory.Krypton.Ribbon.AppButtonController.OnClick C# (CSharp) Method

OnClick() protected method

Raises the Click event.
protected OnClick ( MouseEventArgs e ) : void
e MouseEventArgs A MouseEventArgs containing the event data.
return void
        protected virtual void OnClick(MouseEventArgs e)
        {
            if (Click != null)
                Click(this, e);

            _keyboard = false;
        }