迭代现有的可观察集合,收集所述类中的 2 个属性 C#

发布于 2024-11-03 05:15:32 字数 259 浏览 4 评论 0原文

目前我使用一个名为 locationItems 的可观察集合来存储位置类中的对象。

在我正在处理的页面上,我当前通过最后一页中选定的索引传递一个对象。 DataContext = App.ViewModel.LocationItems[索引];

然而,我想要一个选项来迭代 ObservableCollection LocationItems { get; 中的所有项目。私人套装;这样我就可以从创建的对象中收集值并将它们绘制在地图上。

那么如何迭代这些?

currently im using an observable collection called locationItems to to store my objects from a locations class.

on the page im working on i currently pass one object via selected index from the last page.
DataContext = App.ViewModel.LocationItems[index];

I would however like an option to iterate through all of the items in that ObservableCollection LocationItems { get; private set; } so that i can gather values from its objects created and plot them on a map.

so how do iterate through these ??

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

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

发布评论

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

评论(1

放我走吧 2024-11-10 05:15:32

假设您使用的是 C#,我会想到 foreach 语句。如:

foreach (var location in LocationItems) 
{ 
   ... 
}

The foreach statement comes to mind, assuming you are using C#. As in:

foreach (var location in LocationItems) 
{ 
   ... 
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文