We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

Hide treeview tooltips?

Is there a way to hide the tree view tooltips that appear when a node''s text goes outside the bounds? We are having problems with these tips obscuring mouseclicks. I know that the problem has been fixed, but for our software release, I''d like to just disable these tips for now.

1 Reply

AD Administrator Syncfusion Team October 29, 2004 06:02 PM UTC

Hi Justin, You could disable the TreevIewAdv''s Tooltips by handling the TreeViewAdv.ToolTipContol''s BeforePopup event as shown below : this.treeViewAdv1.ToolTipControl.BeforePopup += new CancelEventHandler(ToolTip_BeforePopup); private void ToolTip_BeforePopup (object sender, CancelEventArgs args) { args.Cancel = true; } The complete sample illustrating this workaround is attached here. Please refer to it and let me know if this works for you. Regards, Guru Patwal Syncfusion, Inc.

Loader.
Live Chat Icon For mobile
Up arrow icon