我想滚动到列表框中的所选项目。因为现在我在Listbox1_SelectionChanged
事件中使用了一行代码,但滚动不起作用。我在单击按钮时尝试了相同的操作。
Listbox1.ScrollIntoView(Listbox1.Items[Listbox1.SelectedIndex]);
答案 0 :(得分:0)
我在我的解决方案中首次使用了更新的UI和调用的ScrollIntoView,它运行正常:
follow this link for more info
Listbox1.UpdateLayout();
Listbox1.ScrollIntoView(Listbox1.Items[Listbox1.SelectedIndex]);