I have a listbox with more than 20 items. How I can scroll to bottom of it?
I tried the ScrollIntoView
method, but no success:
listmy.SelectedIndex = listmy.Items.Count;// listmy.Items.Count - 1;
listmy.ScrollIntoView(listmy.SelectedIndex);
listmy.UpdateLayout();