如何在 ListView 项目中列出 UIElement?

发布于 2024-10-19 08:23:25 字数 330 浏览 5 评论 0原文

我正在尝试访问 ListViewVisualTree 中的 UIElement,但 ItemsCollection 是空的,即使ListView IsLoadedIsInitialized 并在 DataContext 中包含项目。

如何访问 ListView 中的 UIElements?是否有一个我可以附加的事件来等待这些项目可供访问?

谢谢

I'm trying to access UIElements in the VisualTree of a ListView but the ItemsCollection is empty even though the ListView IsLoaded, IsInitialized and has items in DataContext.

How can I access UIElements in a ListView? Is there an event I can attach myself on to wait for the items to be accessible?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

萧瑟寒风 2024-10-26 08:23:25

您可以订阅 ItemsContainerGenerator.StatusChanged 并在处理程序中检查状态是否为 ContainersGenerate

myListView.ItemContainerGenerator.StatusChanged += OnListViewItemsStatusChanged;

-

private void OnListViewItemsStatusChanged(object sender, EventArgs e) {
    if (myListView.ItemContainerGenerator.Status == GeneratorStatus.ContainersGenerated) {
        // access items
    }
}

You can subscribe to ItemsContainerGenerator.StatusChanged and in the handler check whether the status is ContainersGenerated:

myListView.ItemContainerGenerator.StatusChanged += OnListViewItemsStatusChanged;

-

private void OnListViewItemsStatusChanged(object sender, EventArgs e) {
    if (myListView.ItemContainerGenerator.Status == GeneratorStatus.ContainersGenerated) {
        // access items
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文