我正在尝试编写一个通用函数,该函数会将datagridview的数据源转换为列表(然后我想向列表中添加一个空对象。该数据源可以是任何类型)?
我的一些绝望的尝试看起来像这样:
Type datagrid_type = dgv.DataSource.GetType();
List<object> the_source = dgv.DataSource as List<object>;
Convert.ChangeType(the_source, datagrid_type);
Object c = Activator.CreateInstance(datagrid_type);
Convert.ChangeType(c, datagrid_type);
the_source.Add(c);
..但是
the_source
只是null。即使不是,它仍然可能无法正常工作。我相信你们将有一种更聪明的方法(一种切实可行的方法..)来实现这一目标。p.s.我正在使用EF创建一个列表,该列表是数据源,因此将数据源强制转换为DataTable可能与此处不相关
最佳答案
我是通过以下方式完成的(仅在使用绑定(bind)数据源时有效)
创建一个自定义datagridview控件并继承datagridview
public partial class MyGridView : DataGridView
声明一个包含列名,summaryvalue和要显示的格式的类
[Serializable]
public class SummaryDataProperty
{
public string ColumnName { get; set; }
public string Format { get; set; }
internal decimal Value { get; set; }
}
在MyDataGridView中声明摘要数据属性的列表
public List<SummaryDataProperty> SummaryDataPropertyNames { get; set; }
完成数据绑定(bind)后,计算摘要并将其显示在列标题中。
protected override void OnDataBindingComplete(DataGridViewBindingCompleteEventArgs e)
{
base.OnDataBindingComplete(e);
if (SummaryDataPropertyNames.Count > 0)
{
if (DataSource is BindingSource)
{
var ds = (DataSource as BindingSource);
foreach (var prop in SummaryDataPropertyNames)
{
prop.Value = 0;
var col = this.Columns[prop.ColumnName];
foreach (var l in ds.List)
{
decimal val;
if (decimal.TryParse(Convert.ToString(l.GetType().GetProperty(col.DataPropertyName).GetValue(l, null)), out val))
prop.Value += val;
}
col.HeaderText = col.HeaderText.Split('[')[0].TrimEnd(' ') + " [" + prop.Value.ToString(prop.Format) + "]";
}
}
}
}
由于绑定(bind)数据源提供了数据源中的对象列表。它很容易遍历绑定(bind)源列表。我不知道如何使用对象数据源或BindingDatasource.Current执行此操作。我仍在寻找解决方案。
关于c# - 将Datagridview的数据源转换为列表?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13236962/