I just want to add a tooltip for each item in a combo box. i am using c#.net windows application.
There is no option like
combobox.items[1].tooltip();
Is there any way to add tooltip it ?
I just want to add a tooltip for each item in a combo box. i am using c#.net windows application.
There is no option like
combobox.items[1].tooltip();
Is there any way to add tooltip it ?
My solution:
With WPF use a ComboBox.ItemTemplate
Building upon the solution from Michael Sorens (fixed a few bugs and added features). A few things this does:
e.index>0
in the secondif
statement).It does not display the tooltip when the dropdown is CLOSED.