I'm customizing a control which inherits from UserControl, this control has Text property inherits from UserControl. I noticed that when I type, there is no Text entry in the properties list (provided by Intellisense) of my custom control.
Do I have to declare a new Text property (with new keyword) in my custom control to intentionally hide the base Text property? Doing this requires me to invoke OnTextchanged() myself and needs more code while using the base/inherited Text property is enough to me. However I don't like my control Properties to be not present in the Intellisense list.
Any suggestion would be highly appreciated! Thank you!