我在AutoComplete
上看到了WPF中TextBox
的一些建议。但是,它们现在已经存在多年了,很多都没有工作网站就过期了。
基本上,我打算将TextBox
绑定到ObservableCollection
Model
Person
。当用户键入建议时,将显示他们的Name
,并在用户选择所述Person
时显示。Persons
。
但我也希望能够访问所选的TextBox
ID。是否有<TextBox Text="{Binding SelectedItem.ContactMadeBy, ElementName=contactsDataGrid, Mode=OneWay, UpdateSourceTrigger=PropertyChanged}" behaviors:AutoCompleteBehavior.AutoCompleteItemsSource="{Binding EmployeeCollection}"/>
仍然是最新的,可以实现我希望它做的事情吗?
EmployeeCollection
但输入时没有任何反应。我已经通过TextBox
循环,它肯定是填充的,所以问题在于IEnumberable<string>
。另一个问题是它需要绑定到Persons
,我也不能拥有Fragment
ID。