私は自分ComboBox
を検索可能にしたいので、のAutoCompleteMode
プロパティを設定するとこれが行われることがわかりましたComboBox
。しかし、そのプロパティを取得しようとすると、そのプロパティIntelliSense
が表示されません。誰かがこれを手に入れるのを手伝ってくれますか?
<ComboBox
Grid.Column="3"
ItemsSource="{Binding Path=Students, Mode=OneWay}"
SelectedValuePath="ID"
Name="Combobox"
DisplayMemberPath="Name"
SelectedValue="{Binding Path=SelectedStudentId, Mode=TwoWay}"
Visibility="{Binding Path=IssuesVisible,UpdateSourceTrigger=PropertyChanged}">
</ComboBox>
コード ビハインド ファイルで試してみCombobox.AutoCompleteMode
ましたが、IntelliSense
入力を開始するとエラーが表示されます。