我有一组'动态数据'需要绑定到GridControl。到目前为止,我一直在使用标准的DataTable类,它是System.Data命名空间的一部分。这工作得很好,但我被告知我不能使用它,因为它太重,无法在客户端和网络之间通过网络进行序列化。服务器
所以我认为我可以通过简单地使用List<Dictionary<string, object>>
类型来轻松复制DataTable类的'cut-down'版本,其中List表示行的集合,每个Dictionary表示一行与列名称和值作为KeyValuePair类型。我可以设置Grid以使列DataField属性与Dictionary中的键匹配(就像我为DataTable的列名所做的那样。
然而,在做完
之后gridControl.DataSource = table;
gridControl.RefreshDataSource();
网格没有数据......
我想我需要实施IEnumerator
- 对此的任何帮助都会非常感激!
示例调用代码如下所示:
var table = new List<Dictionary<string,object>>();
var row = new Dictionary<string, object>
{
{"Field1", "Data1"},
{"Field2", "Data2"},
{"Field3", "Data3"}
};
table.Add(row);
gridControl1.DataSource = table;
gridControl1.RefreshDataSource();
答案 0 :(得分:63)
欢迎来到System.ComponentModel的精彩世界。 .NET的这个黑暗角落非常强大,但非常复杂。
谨慎一点;除非你有足够的时间来做这件事 - 你可以用你喜欢的任何机制来简单地序列化它,但是在每一端将它重新水化成DataTable
......接下来的不是微弱的-hearted; -p
首先 - 数据绑定(对于表格)适用于列表(IList
/ IListSource
) - 所以List<T>
应该没问题(编辑:我误读了一些东西) )。但它不会理解你的词典实际上是列......
要获取类型以假装拥有列,您需要使用自定义PropertyDescriptor
实现。有几种方法可以执行此操作,具体取决于列定义是否始终相同(但在运行时确定,即可能来自配置),或者它是否根据使用情况而更改(例如每个DataTable
实例如何具有不同的列)。
对于“每个实例”自定义,您需要查看ITypedList
- 此野兽(在添加中实现到IList
)有一个有趣的任务,即呈现表格属性数据......但并不孤单:
对于“每种类型”的自定义,您可以查看TypeDescriptionProvider
- 这可以为类提供动态属性...
...或者您可以实施ICustomTypeDescriptor
- 但这只适用于非常偶然情况(对象索引器(public object this[int index] {get;}
))和在绑定点列表中至少有一行)。(这个接口在绑定离散对象时更有用 - 即不是列表)。
实施ITypedList
并提供PropertyDescriptor
模型是一项艰苦的工作......因此只会偶尔进行。我对它很熟悉,但我不会只是为了笑...
这是非常非常简化的实现(所有列都是字符串;没有通知(通过描述符),没有验证(IDataErrorInfo
),没有转换(TypeConverter
),没有其他列表支持(IBindingList
/ IBindingListView
),没有抽象(IListSource
),没有其他其他元数据/属性等):
using System.ComponentModel;
using System.Collections.Generic;
using System;
using System.Windows.Forms;
static class Program
{
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
PropertyBagList list = new PropertyBagList();
list.Columns.Add("Foo");
list.Columns.Add("Bar");
list.Add("abc", "def");
list.Add("ghi", "jkl");
list.Add("mno", "pqr");
Application.Run(new Form {
Controls = {
new DataGridView {
Dock = DockStyle.Fill,
DataSource = list
}
}
});
}
}
class PropertyBagList : List<PropertyBag>, ITypedList
{
public PropertyBag Add(params string[] args)
{
if (args == null) throw new ArgumentNullException("args");
if (args.Length != Columns.Count) throw new ArgumentException("args");
PropertyBag bag = new PropertyBag();
for (int i = 0; i < args.Length; i++)
{
bag[Columns[i]] = args[i];
}
Add(bag);
return bag;
}
public PropertyBagList() { Columns = new List<string>(); }
public List<string> Columns { get; private set; }
PropertyDescriptorCollection ITypedList.GetItemProperties(PropertyDescriptor[] listAccessors)
{
if(listAccessors == null || listAccessors.Length == 0)
{
PropertyDescriptor[] props = new PropertyDescriptor[Columns.Count];
for(int i = 0 ; i < props.Length ; i++)
{
props[i] = new PropertyBagPropertyDescriptor(Columns[i]);
}
return new PropertyDescriptorCollection(props, true);
}
throw new NotImplementedException("Relations not implemented");
}
string ITypedList.GetListName(PropertyDescriptor[] listAccessors)
{
return "Foo";
}
}
class PropertyBagPropertyDescriptor : PropertyDescriptor
{
public PropertyBagPropertyDescriptor(string name) : base(name, null) { }
public override object GetValue(object component)
{
return ((PropertyBag)component)[Name];
}
public override void SetValue(object component, object value)
{
((PropertyBag)component)[Name] = (string)value;
}
public override void ResetValue(object component)
{
((PropertyBag)component)[Name] = null;
}
public override bool CanResetValue(object component)
{
return true;
}
public override bool ShouldSerializeValue(object component)
{
return ((PropertyBag)component)[Name] != null;
}
public override Type PropertyType
{
get { return typeof(string); }
}
public override bool IsReadOnly
{
get { return false; }
}
public override Type ComponentType
{
get { return typeof(PropertyBag); }
}
}
class PropertyBag
{
private readonly Dictionary<string, string> values
= new Dictionary<string, string>();
public string this[string key]
{
get
{
string value;
values.TryGetValue(key, out value);
return value;
}
set
{
if (value == null) values.Remove(key);
else values[key] = value;
}
}
}