如何自动生成控件属性的代码?

时间:2013-04-01 05:56:49

标签: c# winforms controls

我有一个自定义控件,该控件有一个属性集合。

我想拖动我的控件,自动将对象添加到我的控件的集合属性中。

TabControl.TabPages自动代码相似。将TabControl拖到表单时,自动创建2 TabPage添加TabControl.TabPages

我该怎么做?

1 个答案:

答案 0 :(得分:0)

你应该像TabControl一样使用自定义设计器:

[Designer("System.Windows.Forms.Design.TabControlDesigner, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
...
public class TabControl : Control
{
    ....
}

并且TabControlDesigner提供了这两个默认选项卡:

internal class TabControlDesigner : ParentControlDesigner
{
    public override void InitializeNewComponent(IDictionary defaultValues)
    {
        base.InitializeNewComponent(defaultValues);
        try
        {
            this.addingOnInitialize = true;
            this.OnAdd((object) this, EventArgs.Empty);
            this.OnAdd((object) this, EventArgs.Empty);
            ...