我的ComboBox項目集合中有幾個項目,我想從此列表中選擇一個項目並將其設置爲默認項目 - 當應用程序啓動時 - 此項目已在組合框中。從Combobox C中選擇默認項目#
我想類似的東西:
SelectPrint11.SelectedIndex=2;
但錯誤是:):
System.ArgumentOutOfRangeException: InvalidArgument=Value of '2' is not valid for 'SelectedIndex'
編輯:
我現在不能添加評論..問題連接或什麼的..但在我的名單上有3個項目。打印機1,打印機2,打印機3。所有被添加在組合框屬性 - >產品 - >收藏
您確定在代碼執行時,ComboBox中有三個**(!)項嗎? – 2011-04-12 10:02:23
嘗試使用** comboBox1.SelectedIndex = comboBox1.Items.Count - 1; ** – V4Vendetta 2011-04-12 10:12:54