ComponentFactory.Krypton.Ribbon.AppButtonController.OnClick C# (CSharp) 메소드

OnClick() 보호된 메소드

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

            _keyboard = false;
        }