Hi,
I need to display ToolTip based on a Dropdown item value under the mouse cursor. What event can be used?
Regards,
Mike.
Mike,
thank you.
Regards.
Hi Mike,
I don't think there is any easy way to do this with a ValueList. But you can do it with an UltraDropDown control.The UltraDropDown is essentially a dropdown grid. So it has most of the same features that the grid does including a ToolTipText property on the cell. You just put the UltraDropDown on the form, bind it to a data source, set the ValueMember and DisplayMember columns and set the ValueList property of the column to the UltraDropDown control. Then you need to set TipStyleCell and assign ToolTipText to the cells in the InitializeRow event.
It's a WinGrid.
From InitializeRow: eRow.Cells["FieldValue"].ValueList = valueList; eRow.Cells["FieldValue"].Style = ColumnStyle.DropDownList;
Than, when DropDown expanded, is it possible to display a (different) tooltip for each DropDown value?
The Grid is awesome.
Thank you for your time.
Mike
Which control are you using here? You are posting in the WinGrid forum, so it would seem like you are talking about UltraCombo. But this looks more like UltraComboEditor to me.