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

OnMouseLeave() protected method

Receives a call when the mouse leaves the control.
protected OnMouseLeave ( ) : void
return void
        protected override void OnMouseLeave()
        {
            if (_numericUpDown != null)
                _numericUpDown.DesignerMouseLeave();

            base.OnMouseLeave();
        }