我想知道如何在设置DataSource属性DataGridView之后创建和填充未绑定的列值。假设我们的数据库中有两个简单的表: tblTest:
在我的form1中有一个名为grid的datagridview:
DataTable tblTest = new DataTable();//Select * from tblTest
...
grid.DataSource = tblTest;
????
我要用什么代替?若要添加显示tblTest行中所有数据的填充百分比的未绑定百分比列,请执行以下操作。我们的计算必须在代码端进行,而不是在DB端.谢谢:)
发布于 2014-12-14 22:32:06
只需将列添加到DataTable
中,并以相同的方式将其添加到网格DataSource
DataTable tblTest = new DataTable(); //SELECT * FROM YourTable
//Calculate sum of population
Decimal overall = tblTest.AsEnumerable().Select(dr => dr.Field<Decimal>("Population")).DefaultIfEmpty().Sum();
tblTest.Columns.Add("Percentage", typeof(Decimal));
foreach(DataRow drow in tblTest.Rows)
{
Decimal percentage = YourPercentageCalculationResult; //Add you calculation
drow.SetField<Decimal>("Percentage", percentage);
}
//Create column "on runtime"
DataGridViewTextBoxColumn temp = New DataGridViewTextBoxColumn();
temp.DataPropertyName = "Percentage"
temp.ReadOnly = true;
grid.Columns.Add(temp);
grid.DataSource = tblTest;
https://stackoverflow.com/questions/27464589
复制相似问题