我有幾個項目的字典在它:無法字典項添加到列表框
public static Dictionary<string, string> vmDictionary = new Dictionary<string, string>();
我不得不從內部將其添加的項目列表框的方法:
foreach (KeyValuePair<String, String> entry in MyApp.vmDictionary)
{
ListViewItem item = new ListViewItem();
item.SubItems.Add(entry.Value[0]);
item.SubItems.Add(entry.Value[1]);
selectVMListView.Items.Add(
}
雖然我得到以下錯誤:
Error 2 Argument 1: cannot convert from 'char' to 'string'
與這些行:
item.SubItems.Add(entry.Value[0]);
item.SubItems.Add(entry.Value[1]);
entry.Value [0],如果我沒有記錯,但由於某種原因它抱怨他們字符[1]應該是字符串:S
*金髮時刻*謝謝! – user1559618 2012-07-28 15:32:00