How to auto scroll down in WinForms ListView control when update new item?

c#, listview, winforms

Solution

Try

listView1.Items[listView1.Items.Count - 1].EnsureVisible();

Problem

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.

Original source