What's the easiest way to set tooltip for nodes programatically?
Thanks
this is what i'm using currently.. and it works..
foreach (var node in xamTreeMap.RootNode.Children)
{
ToolTipService.SetToolTip(node, "Tooltip text");
}