The system.listview has this behavior but i can't implement this in ultralistview . For selecting the items on right click I have done this in the MouseDown_Event
if (e.Button == System.Windows.Forms.MouseButtons.Right) { Point mousePoint = new Point(e.X, e.Y); Infragistics.Win.UIElement element = ((UltraListView)sender).UIElement.ElementFromPoint(mousePoint); }
I can get what element was clicked from the Infragistics.Win.UIElement but how can I find which item was clicked and make it appear selected?
Hello,
Could you please review the sample attached to this post and see if it meets your requirements. Please feel free to let me know if I misunderstood you or if you have any other questions.
Thank you Boris, it was exactly what i was looking for.
But I didn't get why this feature was dropped from ultralistview.