我有一个自定义控件,该控件有一个属性集合。
我想拖动我的控件,自动将对象添加到我的控件的集合属性中。
与TabControl.TabPages
自动代码相似。将TabControl
拖到表单时,自动创建2 TabPage
添加TabControl.TabPages
。
我该怎么做?
答案 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);
...