TextChanged事件 - 为什么这不会导致无限循环?

时间:2010-05-24 15:49:24

标签: .net wpf routed-events

在尝试做一些更复杂的事情时,我遇到了一个我不太了解的行为。

假设以下代码处理textChanged事件。

 private void textChanged(object sender, TextChangedEventArgs e)
    {
        TextBox current = sender as TextBox;
        current.Text = current.Text + "+";
    }

现在,在文本框中键入一个字符(例如,A)将导致事件被触发两次(添加两个'+'),最终显示的文本只是A +。

我的两个问题是,为什么事件只发生了两次?为什么只有第一次通过事件才能实际设置文本框的文本?

提前致谢!

1 个答案:

答案 0 :(得分:7)

设置Text属性正在被更改/刚刚更改时似乎明确地被 TextBox 类捕获:

只需使用反射器查看 TextBox.OnTextPropertyChanged (缩短):

TextBox box = (TextBox) d;
if (!box._isInsideTextContentChange)
{
    string newValue = (string) e.NewValue;
    //...
    box._isInsideTextContentChange = true;
    try
    {
        using (box.TextSelectionInternal.DeclareChangeBlock())
        {
           //...
        } //Probably raises TextChanged here
    }
    finally
    {
        box._isInsideTextContentChange = false;
    }
    //...
}

TextChanged 事件被引发之前,字段 _isInsideTextContentChange 设置为true。再次更改 Text 属性时,不会再次引发 TextChanged 事件。

因此:特征; - )