ComponentFactory.Krypton.Toolkit.KryptonSplitContainerBehavior.OnMouseLeave C# (CSharp) Method

OnMouseLeave() public method

Called when any mouse-leave message enters the adorner window of the BehaviorService.
public OnMouseLeave ( System.Windows.Forms.Design.Behavior.Glyph g ) : bool
g System.Windows.Forms.Design.Behavior.Glyph A Glyph.
return bool
        public override bool OnMouseLeave(Glyph g)
        {
            // Notify the split container so it can track mouse message
            if (_splitContainer != null)
                _splitContainer.DesignMouseLeave();

            return base.OnMouseLeave(g);
        }