与我之前的问题相关:Binding ComboBox.SelectedItem in Silverlight
我有一个像这样绑定的ComboBox:
<ComboBox x:Name="PART_CommentaryList"
HorizontalAlignment="Left"
Margin="3"
ItemsSource="{Binding Path=CurrentVideo.Commentaries}"
SelectedItem="{Binding Path=CurrentCommentary, Mode=TwoWay}">
CurrentVideo和CurrentCommentary属性都会定期更改。几次之后,我收到了这个错误:
Category: ManagedRuntimeError
Message: System.ArgumentException: Value does not fall within the expected
range.
at MS.Internal.XcpImports.MethodEx(IntPtr ptr, String name,
CValue[] cvData)
at MS.Internal.XcpImports.MethodPack(IntPtr objectPtr, String methodName,
Object[] rawData)
at MS.Internal.XcpImports.UIElement_TransformToVisual(UIElement element,
UIElement visual)
at System.Windows.UIElement.TransformToVisual(UIElement visual)
at System.Windows.Controls.Primitives.Selector.IsOnCurrentPage(
Int32 index, Rect& itemsHostRect, Rect& listBoxItemRect)
at System.Windows.Controls.Primitives.Selector.ScrollIntoView(
Int32 index)
at System.Windows.Controls.Primitives.Selector.SetFocusedItem(
Int32 index, Boolean scrollIntoView)
at System.Windows.Controls.ComboBox.PrepareContainerForItemOverride(
DependencyObject element, Object item)
at System.Windows.Controls.ItemsControl.UpdateContainerForItem(
Int32 index)
at System.Windows.Controls.ItemsControl.RecreateVisualChildren()
at System.Windows.Controls.ItemsControl.RecreateVisualChildren(
IntPtr unmanagedObj)
这对我来说似乎是一个ComboBox错误。我可以在CurrentCommentary之前验证CurrentVideo是否更改,因此所选项应该始终是列表中的项。
相关,我真的不想要Mode = TwoWay,因为当ItemsSource被更改时,SelectedItem暂时为null,它在我的模型中被设置回来,我实际上并不想要。但是绑定根本不起作用(这似乎是另一个错误)。
答案 0 :(得分:13)
这是ComboBox控件中的一个错误,它与ItemsSource绑定的更改指针有关。我找到的解决方案是:
1)始终将ItemsSource绑定到可观察的集合,并且永远不会重置OC的指针。
<ComboBox ItemsSource="{Binding MyList}" SelectedItem="{Binding MyItem}" />
为:
MyList = new ObservableCollection();
好:
MyList.Clear();
MyList.AddRange(...);
2)在清除MyList之前设置MyItem = null
在您的情况下,只要更改CurrentView,就会更改List的引用。因此,如果SelectedItem不为null,则重置ItemsSource的时间很短,ComboBox的内部正在尝试在新的ItemsSource中找到SelectedItem对象,但旧对象不存在。
答案 1 :(得分:1)
感谢上面的建议。在我的情况下,我能够选择“核选项”,即 - 当所选项目需要更改时,我完全销毁ComboBox,创建一个新的,并适当地设置其SelectedItem。
荒谬,但确实有效。
答案 2 :(得分:0)
Combobox是一个非常有缺陷的SL控件: - (。
在我的情况下,我放弃了所选的项目declarativa绑定并使用讨厌的编码方法...丑陋但有效:
HTH 布劳略
答案 3 :(得分:0)
我前一段时间遇到了同样的问题,而且我可以告诉它,当ItemSource被更改时,ComboBox中存在一个错误,它的布局有问题并且滚动很严重。
通过在设置ItemSource和SelectedItem之间调用ComboBox.UpdateLayout可以解决这个问题。
我前一段时间在Gotcha when databinding a ComboBox in Silverlight写了一篇关于这个问题的博客。
我还没有验证Silverlight 3 Beta中是否仍然存在该问题