自定义控件的子控件支持设计模式

Posted lihoo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自定义控件的子控件支持设计模式相关的知识,希望对你有一定的参考价值。

http://www.codeproject.com/Articles/37830/Designing-Nested-Controls   

 

  假如一个复合控件由一个ToolStript和一个TextBox组成,如何使ToolStript获得设计时支持, 在设计时可以像使用普通ToolStript一样添加/删除控件?

      直接把ToolStript设为Public是无法达到目的的。必须定义一个用于为组件实现设计时服务的Designer

技术分享[Designer(typeof(MyDesigner))]
技术分享public partial class UserControl1 : UserControl


      MyDesigner继承自System.Windows.Forms.Design.ControlDesigner 类, 它提供了一个方法“EnableDesignMode”。使用它将启用子控件的设计时功能,但需要将子控件公开为主控件的属性。

     全部代码如下:

技术分享[Designer(typeof(MyDesigner))]
技术分享public partial class UserControl1 : UserControl
技术分享{
技术分享public UserControl1()
技术分享{
技术分享            InitializeComponent();
技术分享        }
技术分享        [Browsable(false), DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
技术分享public ToolStrip MyToolStrip
技术分享{
技术分享get{ returnthis.toolStrip1 ; }
技术分享        }
技术分享
技术分享    }

 

技术分享internalclass MyDesigner : ControlDesigner
技术分享{
技术分享private UserControl1 MyControl;
技术分享
技术分享publicoverridevoid Initialize(IComponent component)
技术分享{
技术分享
技术分享
技术分享base.Initialize(component);
技术分享
技术分享// Record instance of control we‘re designing
技术分享            MyControl = (UserControl1)component;
技术分享this.EnableDesignMode(MyControl.MyToolStrip, "MyToolStrip");
技术分享        }
技术分享    }

以上是关于自定义控件的子控件支持设计模式的主要内容,如果未能解决你的问题,请参考以下文章

转发控件的所有属性

PageViewController 的自定义页面控件

WPF自定义控件の自定义控件

swift 纯代码自定义控件

自定义控件(倒计时篇)

自定义控件(倒计时篇)