如何从 wpf datagrid 获取项目数据:
商品值为 { ProductId = 1, Name = "fruit", Quantity = 1, Price = 100.0 },类型为匿名类型。
代码:
foreach (var item in this.dgProductList.Items)
已编辑
这就是我添加行的方式:
this.dgProductList.Items.Add(new { ProductId = product.ProductId, Name = product.Name, Quantity = 1, Price = product.Price });