将 DataGridColumn 的 dataFields 获取到 ArrayCollection

发布于 2024-10-01 11:09:48 字数 154 浏览 2 评论 0原文

我有一个带有 3 个 DataGridColumns 的 DataGrid。它们三个都有单独的数据字段。

我需要将数据字段放入 ArrayCollection 并将其传递给函数。我不想对 ArrayCollection 进行硬编码。

有什么办法可以实现这一点吗?

I have a DataGrid with 3 DataGridColumns. All 3 of them have separate dataFields.

I need to get the datafields into an ArrayCollection and pass it to a funciton. I dont want to hard code the ArrayCollection.

Is there any way to achieve this?

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

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

发布评论

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

评论(1

ぃ双果 2024-10-08 11:09:48

像这样的东西:

var dataFieldCollection : ArrayCollection = new ArrayCollection();
for each (dataGridColumn : DataGridColumn in dataGrid.columns){
 dateFieldCollection.addItem(dataGridColumn.dateField);
}

这是我在浏览器中编写的伪代码。

Something like this:

var dataFieldCollection : ArrayCollection = new ArrayCollection();
for each (dataGridColumn : DataGridColumn in dataGrid.columns){
 dateFieldCollection.addItem(dataGridColumn.dateField);
}

This is psuedo code I wrote in the browser.

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