Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
760
Node Tooltip
posted

What's the easiest way to set tooltip for nodes programatically?

 

Thanks

  • 760
    posted

    this is what i'm using currently.. and it works..

     

     

    foreach (var node in xamTreeMap.RootNode.Children)

                {

                    ToolTipService.SetToolTip(node, "Tooltip text");

                }