我定义了3个自定义用户控件:
public partial abstract class MyAbstractControl : Usercontrol{
// Base class definition here, with common property and methods
public string CommonAttribute {get; set;}
}
public partial class MyConcreteControl1 : MyAbstractControl{
// Some specific stuff here
}
public partial class MyConcreteControl2 : MyAbstractControl{
// Other specific but different stuff here
}
然后我定义了另一个具有基类属性的UserControl:
public partial class MyBeautifulControl : UserControl{
[PersistenceMode(PersistenceMode.InnerProperty)]
public MyAbstractControl ChildElement{get;set;}
}
在aspx文件中,我正在使用此控件,但我想定义一个 MyConcreteControl1 的实例,而不是 MyAbstractControl
但如果我写:
<MyBeautifulControl runat="server" id="beautiful">
<ChildElement commonAttribute="value" />
</MyBeautifulControl>
ChildElement 只能定义为 MyAbstractControl 实例。我想根据上下文创建 MyConcreteControl1 或 MyConcreteControl2 实例,我不知道如何。
答案 0 :(得分:0)
使用System.Web.UI.TemplateContainerAttribute
:
[PersistenceMode(PersistenceMode.InnerProperty),
TemplateContainer(typeof(MyConcreteControl))]
public MyAbstractControl ChildElement{get;set;}
请参阅documentation了解详情。还有HOWTO左右。