<ComboBox IsEditable="True" x:Name="copynotesbox" SelectedItem="{Binding NotesID, Mode=TwoWay}" Grid.Column="0" Grid.Row="0" HorizontalAlignment ="Left" Margin="0,0,0,0" Height="30" Width ="75" FontWeight="Bold" Foreground="DarkBlue" VerticalAlignment="Center" ItemsSource="{Binding NotesCopyObs}" >
<ComboBox.InputBindings>
<KeyBinding Command="{Binding NotesID}" />
</ComboBox.InputBindings>
</ComboBox>
上面是我的代码,其中是一个可编辑的组合框。该框绑定到名为List
的{{1}},但我希望选项可以输入一个数字,如果它不在列表中,则可以绑定到NotesCopyObs
。列表编号完美无缺。我无法在网上找到答案
感谢所有
答案 0 :(得分:0)
Text="{Binding NotesID, Mode=TwoWay}"
通过添加它,组合框的文本字段开始工作