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

c# - Farseer ContactListener is not working -

Automatically create pages in phpfox -

database - one php page with different contents and urls -