如何通过向TextBox插入文本来选择ListBox中的项目?
我有两个控制元素:ListBox
包含搜索对象和TextBox
用于插入文本进行搜索。
<StackPanel>
<TextBox x:Name="textForSearchinInList"/>
<ListBox ItemsSource="{Binding ListOfItems}" x:Name="listOfItems"
SelectedItem="{Binding SelectedUnit, Mode=TwoWay}">
...
</ListBox>
</StackPanel>
列表ListOfItems
包含Bar
类型的对象。我想逐个字段name
搜索:
class Bar
{
public string name;
...
}
用户可以向TextBox
插入文字,并且会从ListBox
中选择相应的项目。
答案 0 :(得分:2)
通过搜索您的列表并将您的selectecUnit设置为找到的:
SelectedUnit = ListOfItems.FirstOrDefault(x=>x.name == testForSearchingInList.Text);
答案 1 :(得分:2)
基本思想是查找搜索字符串更改,并更新选定的Bar
项。绑定将完成其余的工作。
假设Bar
看起来像这样:
public sealed class Bar
{
public string Name { get; set; }
// ...
}
您可以创建此视图模型类:
public class ViewModel : INotifyPropertyChanged
{
public ViewModel()
{
BarItems = new[]
{
new Bar { Name = "Dog" },
new Bar { Name = "Cat" },
new Bar { Name = "Mouse" },
};
}
public string SearchString
{
get { return searchString; }
set
{
if (searchString != value)
{
searchString = value;
SelectedBar = BarItems.FirstOrDefault(_ => !string.IsNullOrEmpty(_.Name) && _.Name.IndexOf(searchString, StringComparison.CurrentCultureIgnoreCase) >= 0);
OnPropertyChanged();
}
}
}
private string searchString;
public Bar SelectedBar
{
get { return selectedBar; }
set
{
if (selectedBar != value)
{
selectedBar = value;
OnPropertyChanged();
}
}
}
private Bar selectedBar;
public IEnumerable<Bar> BarItems { get; }
// INPC implementation is omitted
}
并以这种方式使用它:
<Window x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:WpfApplication1">
<Window.DataContext>
<local:ViewModel />
</Window.DataContext>
<StackPanel>
<TextBox Text="{Binding SearchString, UpdateSourceTrigger=PropertyChanged}"/>
<ListBox ItemsSource="{Binding BarItems}" SelectedItem="{Binding SelectedBar}">
<ListBox.ItemTemplate>
<DataTemplate DataType="{x:Type local:Bar}">
<TextBlock Text="{Binding Name}"/>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</StackPanel>
</Window>
答案 2 :(得分:1)
您可以绑定所选项目(直接或使用synchronization)
<ListBox SelectedItem="FoundItem" IsSynchronizedWithCurrentItem="True"
使用c.tor
在ViewModel中进行研究的结果public YourViewModel()
{
IList<Bar> bars = GetBars().ToList();
_barView = CollectionViewSource.GetDefaultView(bars);
_barView.CurrentChanged += BarSelectionChanged;
以及用于查找项目的委托命令
FoundItem = ListOfItems.FirstOrDefault( x => x.name // etc..