ComponentFactory.Krypton.Toolkit.ToolTipController.ToolTipController C# (CSharp) Method

ToolTipController() public method

Initialize an instance of the TooltipController class.
public ToolTipController ( ToolTipManager manager, ViewBase targetElement, IMouseController targetController ) : System
manager ToolTipManager Reference to manager of all tooltip functionality.
targetElement ViewBase Target element that controller is for.
targetController IMouseController Target controller that we are snooping.
return System
        public ToolTipController(ToolTipManager manager,
                                 ViewBase targetElement,
                                 IMouseController targetController)
        {
            Debug.Assert(manager != null);
            Debug.Assert(targetElement != null);

            // Remember incoming references
            _manager = manager;
            _targetElement = targetElement;
            _targetController = targetController;
        }