开发者

How do I list UIElements in ListView items?

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


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
    }
}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜