一个非常基本的问题:我想将wpf ComboBox
绑定到选定的元素,因此它显示与TextBox
相同的值:
<StackPanel DataContext="{Binding ElementName=comboBox1, Path=SelectedItem}">
<TextBox Text="{Binding Path=Id}"></TextBox>
<ComboBox ....
更改combobox1
的值时,所选项目的ID会显示在TextBox
中。如何将第二个ComboBox
绑定到第一个ComboBox
中的所选项目以显示相同的值?
更新:WPF ComboBox…how to set the .Text property?为我解决了这个问题:我需要事先添加其他项目,因此IsEditable
属性应该是真的。
答案 0 :(得分:2)
WPF ComboBox…how to set the .Text property?为我解决了这个问题:我需要事先添加其他项目,因此IsEditable属性应该是真的。
答案 1 :(得分:0)
对我来说没问题。也许你应该发布一个更完整的考试。你在组合框上设置了Selector.IsSynchronizedWithCurrentItem吗?