文本在gridview中更改了文本框的事件

时间:2014-02-03 10:59:18

标签: wpf gridview textbox textchanged

我是wpf的新手,所以我在gridview中遇到了问题。

我在GridView中使用TextBox。基本上,我想要做的是每次编辑框中的文本时调用方法。即输入文本时,函数将调用。这是文本更改事件应该工作。

1 个答案:

答案 0 :(得分:1)

使用TextChanged事件。

的.xaml:

<TextBox TextChanged="TextBox_TextChanged" ... />

.xaml.cs:

private void TextBox_TextChanged(object sender, TextChangedEventArgs e)
{
    string text = ((TextBox)sender).Text;
    // call your function
}