在运行时使用二维数组填充 WPF DataGrid
我有未知大小(nxm)的二维数组,如何用这样的数组填充 wpf datagrid。我找到了从二维数组创建 DataTable 的解决方案,它工作正常。 有没有办法直接从二维数组填充它? 提前致谢。
I have 2d array with unknown size (nxm), how can i populate wpf datagrid with such a array.I found solution to create DataTable from 2d array and it works fine.
Is there a way to populate it directly from 2d array?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Linq 联合或连接两个数组并直接对数据网格进行填充。它类似于 DataTable 解决方案,但更短。
You could use Linq to union or join both arrays and directly pupolate the datagrid. It's similar to the DataTable solution, but shorter.