I have a grid with a column set to
gridColumn.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.DropDownList;
and an associated value list.
What I'd like to do is attach a tooltip to each of the added ValueListItem.
Is there a way to do this?
A small addition.
Using the UIElementViewer I found that the ValueList drop down consists of the following hierarchy of UI elements
ValueListDropDownUIElement
ValueListItemContainerUIElement
ValueListItemUIElement
TextUIElement
What I need to know is how to get to these UI elements at run time. If I can get here I can set ToolTip properties on the TextUIElement but I can't seem to find a way to get to this element.
Hum, Since I've not had any responses to this question I assume no one knows how to get to these UIElements at run time.