0

为什么 TextBox 在插入符号出现和消失以及其文本被更改时不会引发 Invalidated 事件?

class Form1
{
    TextBox t = new TextBox();

    public Form1()
    {
        t.Invalidated += delegate(object sender,InvalidatedEventArgs e)
        {
            //this event doesn't be fired,why ?
        };
    }
}
4

0 回答 0