I3i0
I3i0

Reputation: 1191

Add Tooltip to node's icon

I have a tree of nodes and each node has its own icon. what I want to do is to add a tooltip for each node's icon. In fact, using qtip will add a tooltip to the whole node (node row) and it is not what i need. So is it possible to do that in somehow?

Thanks,

Upvotes: 0

Views: 133

Answers (1)

Daniil Veriga
Daniil Veriga

Reputation: 1851

You should implement it in a similar way as it is done in this example.

Set a respective .Delegate for a ToolTip.

Define a custom attribute in a Node's CustomAttributes that contains a tooltip text for the icon and show that in a ToolTip's onShow.

Upvotes: 1

Related Questions