如何滚动到Windows Phone 7中列表框中的选定项目

时间:2014-04-16 06:04:33

标签: c# windows-phone-7

我想滚动到列表框中的所选项目。因为现在我在Listbox1_SelectionChanged事件中使用了一行代码,但滚动不起作用。我在单击按钮时尝试了相同的操作。

Listbox1.ScrollIntoView(Listbox1.Items[Listbox1.SelectedIndex]);

1 个答案:

答案 0 :(得分:0)

我在我的解决方案中首次使用了更新的UI和调用的ScrollIntoView,它运行正常:

follow this link for more info

Listbox1.UpdateLayout();
Listbox1.ScrollIntoView(Listbox1.Items[Listbox1.SelectedIndex]);