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 有关。
我如何知道哪些项目当前显示在 ListView 上(部分或全部)?
除此之外,我如何找到 ListView 中的顶部项目是什么?
环顾 ListView 类,并没有真正找到任何东西。
要找到最上面的,您可以执行以下操作:
ListViewItem topItem = listView1.TopItem;
不确定看到多远可见,但如果它有帮助你也可以做......
listView1.Items[0].EnsureVisible();
...使列表中的特定项目可见 - 如果需要,它会自动为您滚动。