本文介绍了如何获取datagrid中列的所有值并添加它们的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
(该列是Price,因此我需要获取该列的每个单元格值并将其合计)注意列是自动生成的
(the column is of Price so i need to get every cell value of that column and total it) note that columns are auto generated
推荐答案
double total = 0;
foreach (var myRow in myTable)
{
total += double.Parse(myRow["MyValue"].ToString());
}
要在绑定数据网格之外的其他地方取回数据表,你可以写一些像 -
To get back the datatable at some other place than the binding datagrid, you write something like-
Datatable dt = (Datatable) myDatagrid.ItemsSource;
希望,它有助于:)
Hope, it helps :)
这篇关于如何获取datagrid中列的所有值并添加它们的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!