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();
2.1m questions
2.1m answers
60 comments
57.0k users