使用linq按文本框过滤observablecollection可防止英文输入

时间:2013-07-04 04:55:27

标签: c# linq xaml windows-runtime

首先,虽然有许多关于使用linq通过用户输入的文本框过滤observablecollection的问题,但是在运行代码时没有任何问题,它阻止我输入英文。

为了解释我的代码,我有一个简单的类Person,其中包含2个字符串属性KName和EName,它们代表韩文名称和英文名称。持有这些人将是一个名为人的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处理程序。有人看到我的代码有什么问题吗?或者有更好的方法来做这件事吗?

1 个答案:

答案 0 :(得分:1)

您需要修复SearchBoxTextBox_Enter方法。

e.Handled = true;

必须放在IF表达式中,如:

if (e.Key == Windows.System.VirtualKey.Enter)
{
    // filtering...
    e.Handled = true;
}