I am using a Winforms ListBox as a small list of events, and want to populate it so that the last event (bottom) is visible. The SelectionMode is set to none. T
SelectionMode
Scroll to the bottom:
listbox.TopIndex = listbox.Items.Count - 1;
Scroll to the bottom, and select the last item:
listbox.SelectedIndex = listbox.Items.Count - 1;