How to auto scroll down in ListView control when update new item?
I have tried
listView1.Focus(); listView1.Items[listView1.Items.Count - 1].Selected = true;
but this not working.
Try
listView1.Items[listView1.Items.Count - 1].EnsureVisible();
1.4m articles
1.4m replys
5 comments
57.0k users