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.
我想在 WinRT、Windows 8 中启动我的 gridview 的滚动条?
我该怎么做?
谢谢。
您可以通过调用 ScrollIntoView() 并将其传递给 GridView 中的第一项来实现此目的。
yourGridView.ScrollIntoView(firstItemInYourGridView);