c# - TextBox doesn't fire Invalidated event -


why textbox doesn't raise invalidated event when it's caret appear , disappear , when text changed ?

class form1 {     textbox t = new textbox();      public form1()     {         t.invalidated += delegate(object sender,invalidatedeventargs e)         {             //this event doesn't fired,why ?         };     } } 


Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -