我的DataGrid的各列是从数据库中读取出来的,其中有三列,qty,price,totalmoney,datagrid的数据源是个DataTable,怎样设置使totalmoney = qty*price?
newTable.Columns[i].Expression = "newTable.Columns['数量'] * newTable.Columns['单价']";
运行时候没有报错,但是加载的时候包列XX未找到