I created a new UserControl that inherits my BaseUserControl
. The BaseUserControl
has a FlowLayoutPanel, where i would like to place some new controls in Design Mode. The properties are greyed out in the inherited UserControl, altough I set the modifier of the FlowLayoutPanel to Public:
'BaseUserControl.Designer.vb:
Friend WithEvents pnlNavbar As Panel
Friend WithEvents btnSave As Button
Public WithEvents flpContent As FlowLayoutPanel
How do i make the FlowLayoutPanel accessible in the inherited UserControl?