UserControl and TextChanged event



Anyone know why the TextChanged event on the UserControl object is public
but EditorBrowsable is EditorBrowsable.Never and Browsable is false? In
Intellisense you can't see the TextChanged event but I can still to
UserControl1.TextChanged += <subscribing method>. I get an error when I do
that though. I looked in Reflector and I see:

[EditorBrowsable(EditorBrowsableState.Never), Browsable(false)]
public event EventHandler TextChanged;

Even in MSDN it says TextChanged is not intended to be used from code.
Strange...


.