I am using visual inheritance and was wondering if there is a way to change the properties of inherited controls at design time, preferably in the form designer. If not, then in the designer code.
I have my control declared as Public in the base class. I can access it in the child form code, but not in the form designer. Is this just not possible?
You need to change your control visibility. Put the control property Modifiers on public and recompile the project and then you can change properties of the inherited control.