I have an UltraListView (View = List) with icons and check boxes enabled. How do I capture mouse clicks on the icon?
Hi,
I have a simular problem:
I want to change the image of the Icon on the UltraListView when the mouse enters the ListItem.
And ofcourse set the original image back when the cursor leaves the ListItem.
I get the images from the db, so it must be done at runtime.
The control exposes two events, MouseEnterElement and MouseLeaveElement, that fire when the cursor enters/exits the bounds of a UIElement. In this case you want to handle elements of type UltraListViewItemUIElement, and after upcasting to that type, set the UltraListViewItemUIElement.Item.Appearance.Image.