在此加載函數中有一些酒店名稱,我想將該酒店名稱綁定到組合框。我去了幾個步驟,但我有一個綁定值從這裏組合框的問題。將數據綁定到組合框
private void myWindow_Load(object sender, EventArgs e)
{
string new1 = f.Name; //hotel names comes here(eg:hilton,serandib)
List<string> Hotels = new1 List<string>();
Hotels.Add(new1);
foreach (string Hotel in Hotels)
{
}
}
其實我想要這個酒店名稱顯示在組合框中(這是一個窗體),幫助我休息。
什麼是錯誤?我認爲新是保留關鍵字,你不能用它作爲變量名! – saeed 2013-02-13 05:44:19
http://stackoverflow.com/questions/3768328/c-sharp-combobox-binding-to-list-of-objects – user2046210 2013-02-13 06:09:04