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 -

Socket.connect doesn't throw exception in Android -

iphone - How do I keep MDScrollView from truncating my row headers and making my cells look bad? -