私は telerik radcombobox を持っています。オートコンプリート機能を使用したいので、IsEditable を true に設定し、telerik:TextSearch.TextPath を正しいプロパティに設定します。入力して提案するのではなく、オートコンプリートにより、選択肢が自動的に選択されます(複数の選択肢がある場合)
<UserControl.Resources>
<DataTemplate x:Key="ItemTemplate">
<Border Margin="5">
<StackPanel>
<Image Source="{Binding ImageUrl}" MaxWidth="25" MaxHeight="25" />
<TextBlock Text="{Binding Name}" FontWeight="Bold"/>
<TextBlock Text="{Binding DataSourceName}" />
</StackPanel>
</Border>
</DataTemplate>
<DataTemplate x:Key="SelectionBoxTemplate">
<TextBlock Text="{Binding Name}" FontWeight="Bold"/>
</DataTemplate>
</UserControl.Resources>
<Grid>
<telerik:RadComboBox IsEditable="True" telerik:TextSearch.TextPath="Name" MinWidth="100" Grid.Column="1"
SelectedValue="{Binding SelectedObjectType, Mode=TwoWay}" ItemsSource="{Binding ObjectTypes}" ItemTemplate="{StaticResource ItemTemplate}"
SelectionBoxTemplate="{StaticResource SelectionBoxTemplate}"/>
</Grid>
これはテレリックのバグですか、それとも正しく動作させる方法はありますか?