I tried to hide inherited property in intellisense with EditorBrowsable
(as said here Hiding user control properties from IntelliSense), when testing in client form though I can still see it why ?
[
Category("Main"),
Description("Text"),
Obsolete("Don't use this"),
Browsable(false),
EditorBrowsable(EditorBrowsableState.Never)
]
public override String Text
{
get { return null; }
}