disabling the appearance of TreeNodeAdv Text as a tool tip

Hi forum, When the TreeNodeAdv is partially hidden is it possible to completely disable the appearance of TreeNodeAdv Text as a tool tip. I would like to completely disable the ToolTipControl associated with a given TreeViewAdv. Thanks. Regards, Wilfred

3 Replies

DT Deepa TS Syncfusion Team December 14, 2005 11:51 AM UTC

Hi Wilfred, Thanks for using Syncfusion products. You could do so by handling the BeforePopup event associated with the TreeViewAdv.ToolTipControl as shown below this.treeViewAdv1.ToolTipControl.BeforePopup += new CancelEventHandler (Tooltip_BeforePopup); private void Tooltip_BeforePopup (object sender, CancelEventArgs args) { args.Cancel = true; } Please refer to the test sample attached that illustrates this and let me know if this meets your requirements. Regards, Deepa.T.S

treeview_tooltip.zip


AD Administrator Syncfusion Team December 15, 2005 11:10 AM UTC

Hi, Thanks for your support. Its working now. Regards, Wilfred


DT Deepa TS Syncfusion Team December 15, 2005 12:32 PM UTC

Hi Wilfred, Thanks for the update.And thanks for your interest in Syncfusion products. Best regards, Deepa.T.S

Loader.
Up arrow icon