如何为 WPF 数据网格单元动态设置值
我创建了一个 WPF 数据网格,并且列是静态的(服装列)。数据网格行根据数据表行中的数据进行绑定。我想从另一个 ArrayList
动态地为 WPF DataGrid
单元格设置值。
我没有找到行的单元格索引,例如 dataGrid.Rows[i].Cells[j] = ArrayList[k]。
有人可以帮我吗?我是 WPF 新手。
提前致谢。
I have created a WPF datagrid and the columns are static (costume columns). Data grid rows are binding as per the data from data table rows. I want to set values to the WPF DataGrid
cells dynamically from another ArrayList
.
I'm not finding the cell index of rows, like dataGrid.Rows[i].Cells[j] = ArrayList[k]
.
Can anyone please help me? I'm new to WPF.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你有静态ArrayList,你的代码可以是这样的:
如果我理解错误,请纠正我。
if you have static ArrayList, your code can be like this:
correct me if I understand you wrong.