How to access inherited controls in the winforms designer

后端 未结 5 1289
盖世英雄少女心
盖世英雄少女心 2021-01-04 18:58

I\'m making some controls which all have to share the same look and some common behavior, although they are meant for different kind of inputs. So I made a BaseClass which i

5条回答
  •  被撕碎了的回忆
    2021-01-04 19:16

    When you try to access from the inherited control with the designer to the TableLayoutPanel declared in the base control, you're using a feature in WinForms called "Visual Inheritance".

    Unfortunately TableLayoutPanel doesn't support visual inheritance: http://msdn.microsoft.com/en-us/library/ms171689%28VS.80%29.aspx

    That's why the TableLayoutPanel appears blocked in the inherited controls.

提交回复
热议问题