Does anyone knows how to make the Infragistics UltraListView control scrolls down automatically whenever a new item is added?
try this:
UltraListViewItem i = listView.Items[listView.Items.Count - 1];
ISelectionManager selectionManager = listView as Infragistics.Win.ISelectionManager;
selectionManager.SelectItem(i, true);
i.Activate();
UltraListViewItem has BringIntoView() method, which would do the trick.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With