私は以下のようなテレリックを持っていradcombobox
ます:
<telerik:RadComboBox x:Name="cbCustomerName"
Grid.Row="1"
Grid.Column="1"
Grid.ColumnSpan="3"
Margin="0 0 0 10"
DisplayMemberPath="FullName"
IsEditable="True"
IsFilteringEnabled="True"
ItemsSource="{Binding Customers}"
OpenDropDownOnFocus="True"
SelectedValuePath="CustomerId"
SelectionChanged="cbCustomerName_SelectionChanged"
Text="{Binding CurrentCustomer.FullName,
UpdateSourceTrigger=LostFocus}" />
アイテムリストにないテキストボックスに何かを入力してから他のコントロールに移動すると、そのテキストがクリアされますが、これは望ましくありません。
すべてのプロパティを確認しましたが、フォーカスを失った後に保持するものは見つかりませんでした。
誰かがこれについて知っているなら助けてください。