I use a ListView to show a list of items. When a new item is added, or the user moves one up or down (via buttons), I want the list to scroll to show/keep the item visible to the user. How can I do this?
Most articles I've found point to the ScrollIntoView() method or give complex code solutions. E.g. this question and answer uses ScrollIntoView() in WPF, but that isn't available for a ListView in Windows.Forms.