1

我有一个DataGridView在运行时填充了几ComboBoxColumn列。例如,

var newCountryColumn = new DataGridViewComboBoxColumn();
newCountryColumn.HeaderText = "Country";
newCountryColumn.DataSource = CountryListArray.ToArray();
newCountryColumn.DisplayMember = "Name";
newCountryColumn.ValueMember = "Code";

等等。现在,在运行时,用户选择一个要打开的文件,它被逐行解析成一个数组。

var lines = File.ReadAllLines(path + "\\" + choosenFile);
foreach (string line in lines) {
    numOfRecords++;
    errorCounter = 0;
    string[] items = line.Split('\t').ToArray();

    int billState = headerIndex[0] - 1;
    int billCountry = headerIndex[1] - 1;
    int shipState = headerIndex[2] - 1;
    int shipCountry = headerIndex[3] - 1;

    for (int i = 0; i < headerIndex.Count; i++) {
        int index = headerIndex[i];
        /*Get the state and country codes from the files using the correct indices*/
        Globals.Code = items[index - 1].ToUpper();
        //If the code can't be found in either list
        if (!CountryList.ContainsKey(Globals.Code) && !StateList.ContainsKey(Globals.Code)) {
            errorCounter++;
            if (errorCounter == 1){
                dataGridView1.Rows.Add(items);
            }
        }
    }
}

现在,这很好用,除非我在 , 中滚动DataGridView到组合框所在的位置。显然,代码不喜欢将 items 数组中的值添加到预先存在的组合框列中。我得到一个错误对话框:

DataGridView 发生以下异常: System.ArguementException: DataGridViewComboBoxCell 值无效。

项目数组中的项目可以显示在组合框列中吗?

4

1 回答 1

0
newCountryColumn.DisplayMember = "Name";
newCountryColumn.ValueMember = "Code";

告诉newCountryColumn.DataSource期待一个具有名为Nameand的属性的集合Code。但是你把它传递给string[]. 那是错误的,这就是错误消息告诉您的内容。

有几种方法可以做到这一点,最直接的方法是使用属性Name和声明您自己的类Code

class CountryTuple
{
    public string Code { get; private set; }
    public string Name { get; private set; }

    public CountryTuple(string code, string name)
    {
        this.Code = code;
        this.Name = name;
    }
}

现在您可以实例化您的集合:

var cts = new List<CountryTuple>();

将实例添加到您的集合::

cts.Add(new CountryTuple(items[index - 1].ToUpper(), whatever));

并将其分配给您的DataSource

newCountryColumn.DataSource = cts;
于 2012-12-13T23:12:30.603 回答