我知道自动填充箱通常用于绑定物品和选定的物品。 但是,如果我在其中输入文本并且该项目不存在,该怎么办?我想将它绑定到字符串变量是可能的吗?
例如
<telerik:RadAutoCompleteBox Text="{Binding Value}"
MVVM方
public string Value {get; set;}
答案 0 :(得分:1)
改为使用 SearchText 属性,例如:
<telerik:RadAutoCompleteBox
x:Name="acb"
SearchText="{Binding SearchText, Mode=TwoWay}"
ItemsSource="{Binding Items}" />
不要忘记实现INotifyPropertyChanged接口以在视图和视图模型之间同步更改。