我正在使用.NET 4.0中的Windows窗体应用程序。当我将数据绑定到BindingSource
(绑定了ComboBox
)时,我得到以下异常。注意:只有当调试器停止在被抛出的异常时才会得到它,无论是未处理还是处理。因此,异常被捕获 - 但是我不确定是否可以抛出。
发生ArgumentOutOfRangeException InvalidArgument =值'0'对'SelectedIndex'无效。 参数名称:SelectedIndex
我没有设置SelectedIndex
属性。我的代码如下所示。 myData
是IList
个实体(List
在运行时):
myBindingSource.DataSource = myData;
我无法弄清楚我做错了什么。而且,Call Stack让我感到困惑(见下文)。 Windows窗体框架似乎在组合框上设置SelectedIndex
,这会导致异常。有人知道摆脱这个的方法吗?
干杯 的Matthias
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)
答案 0 :(得分:16)
当您要求调试器停止在Exceptions上时,它会这样做,无论它们是否会被处理。这会导致您观察到的情况:
调试器在异常处停止并使您感到困惑,尽管异常完全有效并且似乎是周围代码所期望的,因为它处理异常而不会死亡。
总结并回答你的问题:
并非调试器停止的所有异常都表明您正在做错事或代码中存在问题。
更新(积分转到马克):
如果启用“仅我的代码”选项,则可以告诉调试器仅捕获异常。
答案 1 :(得分:1)
您也可以试试这个。在设置组合框之前,DataSource设置其BindingContext
myBindingSource.BindingContext = this.BindingContext;
myBindingSource.DataSource = myData;