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

OnMouseUp() public method

Called when any mouse-up message enters the adorner window of the BehaviorService.
public OnMouseUp ( System.Windows.Forms.Design.Behavior.Glyph g, MouseButtons button ) : bool
g System.Windows.Forms.Design.Behavior.Glyph A Glyph.
button MouseButtons A MouseButtons value indicating which button was clicked.
return bool
        public override bool OnMouseUp(Glyph g, MouseButtons button)
        {
            // Notify the split container so it can track mouse message
            if (_splitContainer != null)
                _splitContainer.DesignMouseUp(button);

            return base.OnMouseUp(g, button);
        }