ComponentFactory.Krypton.Ribbon.GalleryButtonController.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(_target, e);
        }