如何在c#WPF中添加搜索字段

时间:2016-01-31 18:13:10

标签: c# wpf

我不知道如何在c#WPF环境中添加搜索字段。请帮我。我将感激你。

实际上我在sql server中有一个名为employee的表,我想从表中检索数据。就像我想通过名字搜索员工一样。当我在搜索字段中键入名称并单击搜索按钮时,它将显示以下结果,我可以编辑或删除特定记录。

提前谢谢。

1 个答案:

答案 0 :(得分:1)

使用TextBox和TextChanged事件将在TextBox中执行操作时触发。

<Window x:Class="WpfApplication1.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:sys="clr-namespace:System;assembly=mscorlib"
        xmlns:local="clr-namespace:WpfApplication1.ABC"

        Width="500" Height="500">
    <TextBox  Width="300" Height="40" TextChanged="TextBox_TextChanged"></TextBox>
</Window>

您必须在CS文件中生成TextChanged事件,

private void TextBox_TextChanged(object sender, TextChangedEventArgs e)
        {
            // perform your operation here
        }