Silverlight:当textchange事件触发时如何获取文本框更改前的值

发布于 2025-01-05 23:09:46 字数 66 浏览 0 评论 0原文

我有一个文本框,当触发 textchange 事件时,我想将旧值与更改后的值进行比较。

如何获取旧值?

I have a textbox, when textchange event fired, I want to compare the old value with the changed value.

How to get the old value?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

埋情葬爱 2025-01-12 23:09:46

注册 KeyDown 事件文本框的。当按下某个键且在 TextChanged-Event 的 TextBox 被引发。

在这种情况下,您可以通过调用TextBox的Text-Property来获取当前的Text。

TextBox myTextBox = new TextBox();
myTextBox.KeyDown += KeyDownOnMyTextBox;
myTextBox.TextChanged += TextChangedOnMyTextBox;

string currentText = string.Empty;
string newText = string.Empty;

private void KeyDownOnMyTextBox(object sender, KeyEventArgs e){
  currentText = myTextBox.Text;
}

private void TextChangedOnMyTextBox(object sender, TextChangedEventArgs e){
  newText = myTextBox.Text;
}

Register the KeyDown-Event of the TextBox. This is event is raised when a Key is pressed and before the TextChanged-Event of the TextBox is raised.

In this event, you can get the current Text by calling the Text-Property of the TextBox.

TextBox myTextBox = new TextBox();
myTextBox.KeyDown += KeyDownOnMyTextBox;
myTextBox.TextChanged += TextChangedOnMyTextBox;

string currentText = string.Empty;
string newText = string.Empty;

private void KeyDownOnMyTextBox(object sender, KeyEventArgs e){
  currentText = myTextBox.Text;
}

private void TextChangedOnMyTextBox(object sender, TextChangedEventArgs e){
  newText = myTextBox.Text;
}
如梦初醒的夏天 2025-01-12 23:09:46

每次触发此事件时,您都必须记下该值或为其分配一个值。

然后你就可以比较一下。

You are going to have to make a note of the value each time this event is fired or you assign it a value.

Then you can compare it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文