BrightIdeasSoftware.ObjectListView.CreateCellToolTip C# (CSharp) Method

CreateCellToolTip() protected method

Create a ToolTipControl to manage the tooltip control used by the listview control
protected CreateCellToolTip ( ) : void
return void
        protected virtual void CreateCellToolTip()
        {
            this.cellToolTip = new ToolTipControl();
            this.cellToolTip.AssignHandle(NativeMethods.GetTooltipControl(this));
            this.cellToolTip.Showing += new EventHandler<ToolTipShowingEventArgs>(HandleCellToolTipShowing);
            this.cellToolTip.SetMaxWidth();
            NativeMethods.MakeTopMost(this.cellToolTip);
        }
ObjectListView