ComponentFactory.Krypton.Toolkit.ToolTipController.MouseUp C# (CSharp) Méthode

MouseUp() public méthode

Mouse button has been released in the view.
public MouseUp ( Control c, Point pt, MouseButtons button ) : void
c System.Windows.Forms.Control Reference to the source control instance.
pt Point Mouse position relative to control.
button MouseButtons Mouse button released.
Résultat void
        public void MouseUp(Control c, Point pt, MouseButtons button)
        {
            _manager.MouseUp(_targetElement, c, pt, button);

            if (_targetController != null)
                _targetController.MouseUp(c, pt, button);
        }