Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用ListViewWindows 8 Metro 风格的应用程序,我想以编程方式使其滚动到视图中特定项目的位置。
ListView
这可能吗?
不确定您使用的是 JavaScript 还是 XAML,但在 JavaScript 中,您应该能够只设置ensureVisible(index)ListView 的属性。这将确保该项目可见,必要时滚动 ListView:
ensureVisible(index)
在 XAML 中,ScrollIntoView(object)应该是您需要的。(对于 SemanticZoom,请参阅MakeVisible。)
ScrollIntoView(object)
MakeVisible