ComponentFactory.Krypton.Ribbon.ViewDrawRibbonGalleryButton.ForceLeave C# (CSharp) Method

ForceLeave() public method

Force the mouse to leave the button.
public ForceLeave ( ) : void
return void
        public void ForceLeave()
        {
            _controller.ForceLeave();
        }

Usage Example

 private void OnButtonContext(object sender, MouseEventArgs e)
 {
     _buttonContext.ForceLeave();
     _gallery.OnDropButton();
 }