How can I programmatically display the last item in a C# listview when there are vertical scrollbars? I've studied every method associated with listviews and can't find anything.
It's not actually easy/possible to scroll the list view. You need to tell the item to make sure it's visible.
var items = listView.Items;
var last = items[items.Count-1];
last.EnsureVisible();
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