我正在使用.NET 4.0中的Windows窗體應用程序。因爲我將數據綁定到BindingSource
(綁定了ComboBox
),所以我得到以下例外。注意:只有在調試器停止在拋出異常的情況下,我才能得到它,不管是未處理還是處理。因此,這個例外被捕獲 - 但我不確定是否可以拋出。InvalidArgument ='0'的值對'SelectedIndex'無效
ArgumentOutOfRangeException發生 InvalidArgument = '0' 值不是有效的關於 '的SelectedIndex'。 參數名稱:SelectedIndex
我沒有設置SelectedIndex
屬性。我的代碼如下所示。 myData
是實體的IList
(List
在運行時):
myBindingSource.DataSource = myData;
我想不出什麼我做錯了。而且,Call Stack讓我有點困惑(見下文)。 Windows窗體框架似乎在組合框上設置SelectedIndex
,這會導致異常。有沒有人知道擺脫這種方式?
乾杯 馬蒂亞斯
System.Windows.Forms.dll!System.Windows.Forms.ComboBox.SelectedIndex.set(int value) + 0x233 bytes
System.Windows.Forms.dll!System.Windows.Forms.CurrencyManager.OnPositionChanged(System.EventArgs e) + 0x3e bytes
System.Windows.Forms.dll!System.Windows.Forms.CurrencyManager.ChangeRecordState(int newPosition, bool validating, bool endCurrentEdit, bool firePositionChange, bool pullData) + 0x1bd bytes
System.Windows.Forms.dll!System.Windows.Forms.CurrencyManager.List_ListChanged(object sender, System.ComponentModel.ListChangedEventArgs e) + 0x75c bytes
System.Windows.Forms.dll!System.Windows.Forms.BindingSource.ResetBindings(bool metadataChanged) + 0x3e bytes
System.Windows.Forms.dll!System.Windows.Forms.BindingSource.SetList(System.Collections.IList list, bool metaDataChanged, bool applySortAndFilter) + 0x22c bytes
System.Windows.Forms.dll!System.Windows.Forms.BindingSource.DataSource.set(object value) + 0x47 bytes
(my method)
當你綁定你的組合時,它會自動將selectedIndex設置爲第0項。如果數據源中沒有項目,爲什麼不做檢查並且不綁定? – Pabuc