Does anyone know if the Infragistics UltraGrid control provides functionality similar to that of DataGridView.HitTestInfo?
|
|
Check this out. They don't convert the coordinates, but they use a special Infragistics grid event (MouseEnterElement) to get the element, which the mouse currently hovers over. Maybe it helps. |
||
|
|
|
|
There's a They have a free trial download, so you could see if they've added it to their latest and greatest :o) |
||
|
|
|
|
If you had a MouseEventHandler for the UltraGrid then you can do the following:
You can then cast the element depending on its expected type using element.GetContext():
|
||
|
|
