Hide Events from Intellisense
Hi how to remove event from inherited control (TextBox)
i have this attribute on the inherited control.
[System.ComponentModel.Designer(typeof(TextBoxDesigner))]
this on the event
[
Browsable(false),
EditorBrowsable(EditorBrowsableState.Never)
]
new public event System.EventHandler TextChanged;
and this for my designer
protected override void PostFilterEvents(System.Collections.IDictionary
events)
{
events.Remove( "TextChanged");
}
}
yet it still displays in Intellisense can anybody put some light on this

Hide Events from Intellisense
Cerasti
mmadsen
Thanks
Dion Heskett