3

首先,虽然有很多关于使用 linq 通过用户输入的文本框过滤 observablecollection 的问题已得到解答,但在运行代码时却一无所获,它阻止了我输入英文。

为了解释我的代码,我有一个简单的 Person 类,它有 2 个字符串属性 KName 和 EName,它们分别代表一个韩文名称和一个英文名称。持有这些 Person 将是一个名为 Person 的 ObservableCollection。

    class Person
    {
        public string KName { get; set; }
        public string EName { get; set; }
    }

    ObservableCollection<Person> persons;
    public MainPage()
    {
        this.InitializeComponent();
        persons = new ObservableCollection<Person>();

        Person s = new Person();
        s.KName = "홍길동";
        s.EName = "Hong Kil-dong";
        persons.Add(s);

        Person t = new Person();
        t.KName = "김지영";
        t.EName = "Kim Ji-young";
        persons.Add(t);

        Person u = new Person();
        u.KName = "최철수";
        u.EName = "Choi Chul-soo";
        persons.Add(u);

        this.DataContext = persons;
    }

在 xaml 方面,我有一个带有 KeyDown 事件处理程序的文本框,它将检查是否按下 Enter 键来处理搜索和一个 ListView,它将显示过滤器的结果。

<Page
    x:Class="TextboxTest.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:TextboxTest"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d">

    <Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
        <TextBox x:Name="SearchTextBox" Height="70" Margin="15"
                 VerticalAlignment="Top"  KeyDown="SearchTextBox_Enter"/>
        <ListView x:Name="SearchResults" Margin="15" Height="500">
            <ListView.ItemTemplate>
                <DataTemplate>
                    <StackPanel Orientation="Horizontal" Margin="5" HorizontalAlignment="Left">
                        <TextBlock Width="200" Text="{Binding Path=KName}"
                                   TextAlignment="Left" HorizontalAlignment="Left" />
                        <TextBlock Width="200" Text="{Binding Path= EName}" />
                    </StackPanel>
                </DataTemplate>
            </ListView.ItemTemplate>
        </ListView>
    </Grid>
</Page>

和 KeyDown 处理程序

    private void SearchTextBox_Enter(object sender, KeyRoutedEventArgs e)
    {
        if (e.Key == Windows.System.VirtualKey.Enter)
        {
            string txt = SearchTextBox.Text;
            if(SearchResults.SelectedItem != null)
                SearchResults.SelectedItem = null;

            var filter = from Person in persons
                            let kname = Person.KName
                            let ename = Person.EName
                            where ename.Contains(txt) ||
                            kname.Contains(txt)
                            orderby kname
                            select Person;


            SearchResults.ItemsSource = filter;
        }
        e.Handled = true;
    }

所以我的问题是我可以输入韩文,但我不能在文本框中输入英文。我可以从其他地方复制英文文本,将其粘贴到文本框中,它会按预期过滤。从文本框中删除 KeyDown 处理程序,它会很好地输入英文。所以问题一定是 KeyDown 处理程序。有人看到我的代码有什么问题吗?还是有更好的方法来做到这一点?

4

1 回答 1

1

您需要修复 SearchBoxTextBox_Enter 方法。

e.Handled = true;

必须放在 IF 表达式内,例如:

if (e.Key == Windows.System.VirtualKey.Enter)
{
    // filtering...
    e.Handled = true;
}
于 2013-07-04T06:24:00.910 回答