我的代碼結合之前默認的文本添加到組合框的窗戶形式結合,它會通過調用方法GetProperties,以PropertyCombo(組合框)如何以下
List<String> properties = CiaLogicObj.GetProperties(classComboSelectedIndex);
BindingSource binSource = new BindingSource();
binSource.DataSource = properties;
PropertyCombo.DataSource = binSource;
得到之前綁定的屬性列表,我想我的ComboBox
將顯示「<請選擇>」作爲其中的第一項。 我無法做到。 下面的方法不起作用。
PropertyCombo.text="<please Select>"
或 PropertyCombo.Items.Insert(0,"<please Select>")
錯誤來了: - 錯誤1「System.Windows.Forms.ComboBox」不包含「值」的定義,並沒有擴展方法「值」接受類型'System.Windows.Forms.ComboBox'的第一個參數可以被發現(你是否缺少使用指令或程序集引用?) – Amit
sry我忘了提及類。 – Shashank