gpt4 book ai didi

c# - 无法迭代 Xamarin Forms 中的 ListView 项目

转载 作者:太空宇宙 更新时间:2023-11-03 12:16:44 26 4
gpt4 key购买 nike

当我写这段代码时:

ListView lv = new ListView();

foreach (ListViewDataItem item in lv.Items)
{

}

我收到“找不到类型或名称 ListViewDataItem

Items 也没有在 lv 对象下找到。

基本上我需要遍历 ListView 的每一行并设置一个使用项目模板添加的复选框。

我怎样才能做到这一点?

最佳答案

遍历 ListView 的正确方法是访问它的 ItemsSource。然后您可以将该项目转换到您的 View 模型中并使用它做一些事情。

foreach (var item in lv.ItemsSource)
{
// cast the item
var dataItem = (ListViewDataItem) item;

// then do stuff with your casted item
...
}

关于c# - 无法迭代 Xamarin Forms 中的 ListView 项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49391961/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com