我想使用Dictionary<string, TData>
在DataGridView
窗体中显示一个DataGridView
。引向我的特殊用例是:字典键是列名,表示一个月,数据类型是十进制。
在这种情况下,对于每一列,我们都有一个月和一个相应的十进制数。我希望DataGridView显示月份的列,并执行到字典条目的数据绑定。
显然,这还有另一个简单的解决方案:创建一个包含12个属性的视图模型,每个月都使用十进制类型。创建一个DataGridView并执行到该视图模型的传统数据绑定,数据源是这样的视图模型对象的列表。
但这太乏味了。我们需要创建一堆可以通过使用字典实现自动化的东西。
我的问题是,需要基于字典动态创建列,而数据绑定必须以这种方式完成。
我在谷歌上搜索了一下,找到了Binding
类,它允许创建绑定。但我不知道如何使用它将动态创建的列绑定到字典中的条目。
这是如何做到的呢?
发布于 2016-11-12 18:50:12
您需要实现ICustomTypeDescriptor
,以便字典在DataGridView
或PropertyGrid
中可编辑。
选项1-实现ICustomTypeDescriptor
您可以实现ICustomTypeDescriptor
,然后可以在DataGridView
中编辑字典。您可以使用this实现进行一些小的更改。然后您可以这样简单地编辑字典:
Dictionary<string, int> dictionary;
public void Form1_Load(object sender, EventArgs e)
{
dictionary = new Dictionary<string, int>() { { "A", 1 }, { "B", 2 }, { "C", 3 } };
dataGridView1.DataSource = new BindingSource(new DictionaryAdapter(dictionary) , "");
}
或者,如果您愿意,可以将其设置为SelectedObject
of a PropertyGrid
propertyGrid1.SelectedObject = new DictionaryAdapter(dictionary);
以下是实现:
public class DictionaryAdapter : ICustomTypeDescriptor
{
IDictionary dictionary;
public DictionaryAdapter(IDictionary d)
{
dictionary = d;
}
public string GetComponentName()
{
return TypeDescriptor.GetComponentName(this, true);
}
public EventDescriptor GetDefaultEvent()
{
return TypeDescriptor.GetDefaultEvent(this, true);
}
public string GetClassName()
{
return TypeDescriptor.GetClassName(this, true);
}
public EventDescriptorCollection GetEvents(Attribute[] attributes)
{
return TypeDescriptor.GetEvents(this, attributes, true);
}
EventDescriptorCollection System.ComponentModel.ICustomTypeDescriptor.GetEvents()
{
return TypeDescriptor.GetEvents(this, true);
}
public TypeConverter GetConverter()
{
return TypeDescriptor.GetConverter(this, true);
}
public object GetPropertyOwner(PropertyDescriptor pd)
{
return dictionary;
}
public AttributeCollection GetAttributes()
{
return TypeDescriptor.GetAttributes(this, true);
}
public object GetEditor(Type editorBaseType)
{
return TypeDescriptor.GetEditor(this, editorBaseType, true);
}
public PropertyDescriptor GetDefaultProperty()
{
return null;
}
PropertyDescriptorCollection
System.ComponentModel.ICustomTypeDescriptor.GetProperties()
{
return ((ICustomTypeDescriptor)this).GetProperties(new Attribute[] { });
}
public PropertyDescriptorCollection GetProperties(Attribute[] attributes)
{
ArrayList properties = new ArrayList();
foreach (DictionaryEntry e in dictionary)
{
properties.Add(new DictionaryPropertyDescriptor(dictionary,
e.Key.ToString()));
}
PropertyDescriptor[] props =
(PropertyDescriptor[])properties.ToArray(typeof(PropertyDescriptor));
return new PropertyDescriptorCollection(props);
}
}
public class DictionaryPropertyDescriptor : PropertyDescriptor
{
IDictionary dictionary;
string key;
internal DictionaryPropertyDescriptor(IDictionary d, string k)
: base(k.ToString(), null)
{
dictionary = d;
key = k;
}
public override Type PropertyType
{
get { return dictionary[key].GetType(); }
}
public override void SetValue(object component, object value)
{
dictionary[key] = value;
}
public override object GetValue(object component)
{
return dictionary[key];
}
public override bool IsReadOnly
{
get { return false; }
}
public override Type ComponentType
{
get { return null; }
}
public override bool CanResetValue(object component)
{
return false;
}
public override void ResetValue(object component)
{
}
public override bool ShouldSerializeValue(object component)
{
return false;
}
}
选项2-使用DataTable
另外,作为一个简单的选项,您可以将Dictionary
形状为DataTable
并编辑数据。
您可以为此任务创建扩展方法:
public static class DictionaryExtensions
{
public static DataTable ToDataTable<T>(this Dictionary<string, T> dictionary)
{
var dt = new DataTable();
dictionary.Keys.ToList().ForEach(x => dt.Columns.Add(x, typeof(T)));
dt.Rows.Add(dictionary.Values.Cast<object>().ToArray());
return dt;
}
public static void UpdateFromDataTable<T>(this Dictionary<string, T> dictionary,
DataTable table)
{
if (table.Rows.Count == 1)
table.Columns.Cast<DataColumn>().ToList().ForEach(x =>
dictionary[x.ColumnName] = table.Rows[0].Field<T>(x.ColumnName));
}
}
并以这种方式使用这些扩展方法:
Dictionary<string, int> dictionary;
public void Form1_Load(object sender, EventArgs e)
{
dictionary = new Dictionary<string, int>() { { "A", 1 }, { "B", 2 }, { "C", 3 } };
dataGridView1.DataSource = dictionary.ToDataTable();
}
private void button1_Click(object sender, EventArgs e)
{
dictionary.UpdateFromDataTable(dataGridView1.DataSource as DataTable);
}
https://stackoverflow.com/questions/40566268
复制相似问题