使用WPF中的搜索选择ListBox中的项目

时间:2016-09-05 12:36:00

标签: c# wpf xaml

如何通过向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中选择相应的项目。

3 个答案:

答案 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..