How to scroll listview items programmatically
listView1.EnsureVisible(X);
where X is the item index.
This snippet can be used to scroll the ListView automatically to a particular index in the listView
.
Consider the code: with this you can automatically scroll to the index 8
on button click
private void button2_Click(object sender, EventArgs e)
{
listView1.EnsureVisible(8);
}