是否有标准控件允许用户编辑String to String Dictionary的键值对?
如果没有,你会如何实施?我有一些想法,但没有一个看起来很棒。
答案 0 :(得分:7)
不,没有内置的。实现一个;如何使用DataGridView
实现IDataErrorInfo
,以便重复的密钥导致出现红色错误blob:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Windows.Forms;
class Pair : IDataErrorInfo
{
internal IList<Pair> Parent { get; set; }
public string Key { get; set; }
public string Value { get; set; }
string IDataErrorInfo.Error
{
get { return ""; }
}
string IDataErrorInfo.this[string columnName]
{
get
{
if(columnName == "Key" && Parent != null && Parent.Any(
x=> x.Key == this.Key && !ReferenceEquals(x,this)))
{
return "duplicate key";
}
return "";
}
}
}
static class Program
{
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
BindingList<Pair> pairs = new BindingList<Pair>();
// todo: fill from StringDictionary
pairs.AddingNew += (s,a) =>
{
a.NewObject = new Pair { Parent = pairs };
};
Application.Run(new Form {
Controls = {new DataGridView {
Dock = DockStyle.Fill,
DataSource = pairs
}}
});
}
}
答案 1 :(得分:1)
只需创建一个列表并将它们数据绑定到网格中。快速&amp;容易。
编辑:这是一个例子,假设你有一个带有GridView的表单。
Dictionary<string, string> d;
protected void Page_Load(object sender, EventArgs e)
{
d = new Dictionary<string, string>();
d.Add("key 1", 1);
d.Add("key 2", 2);
d.Add("key 3", 3);
d.Add("key 4", 4);
d.Add("key 5", 5);
GridView1.DataSource = d;
GridView1.DataBind();
}
对于错误处理等,请检查Marc的答案。 您可能还想对DataBinding进行更多研究。