Tooltip

How to disable the tooltip and text in treeviewadv? I am using 3.3. Thanks in advance, Amit

1 Reply

DT Deepa TS Syncfusion Team June 9, 2006 11:53 AM UTC

Hi Amit, 1.ToolTipControl: Tooltip automatically popups whenever the node is partially visible(usually clipped by the edge of the TreeViewAdv control) and when the mouse pointer is hovered.It can be disabled by cancelling it in the BeforePopup event. this.treeViewAdv1.ToolTipControl.BeforePopup +=new CancelEventHandler(ToolTipControl_BeforePopup); private void ToolTipControl_BeforePopup(object sender, CancelEventArgs e) { e.Cancel=true; } 2.HelpTextControl: HelpTextControl will not be shown automatically, unless you have entered some text in HelpText property for that particular node. However you can disable by cancelling it in the BeforePopup event. this.treeViewAdv1.HelpTextControl.BeforePopup+=new CancelEventHandler(HelpTextControl_BeforePopup); private void HelpTextControl_BeforePopup(object sender, CancelEventArgs e) { e.Cancel=true; } Please take a look at the attached sample and let me know if you have any questions. TreeViewToolTip Regards, Deepa

Loader.
Up arrow icon