ComponentFactory.Krypton.Toolkit.KryptonTextBoxDesigner.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 (_textBox != null)
                _textBox.DesignerMouseLeave();

            base.OnMouseLeave();
        }