Scroll to bottom of listbox wp7
问题 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(); 回答1: The ScrollIntoView method expects an object (the item to scroll to), but you are passing in the numeric index of the selected item. This will work: void MainPage_Loaded(object sender, RoutedEventArgs e) { listmy.SelectedIndex =