1

我希望能够做类似的事情:

<ui:Tab Title="A nice title">
  <TabTemplate>
    <asp:Literal runat="server" ID="SetMe">With Text or Something</asp:Literal>
  </TabTemplate>
</ui:Tab>

但也能做到:

<ui:Tab Title="A nice title">
  <TabTemplate>
    <asp:DataList runat="server" ID="BindMe"></asp:DataList>
  </TabTemplate>
</ui:Tab>

我最终想出了答案代码:

[ParseChildren(true)]
public class Node : SiteMapNodeBaseControl, INamingContainer
{
    private ITemplate tabTemplate;
    [Browsable(false),
    DefaultValue(null),
    Description("The tab template."),
    PersistenceMode(PersistenceMode.InnerProperty),
    TemplateContainer(typeof(TabTemplate))]
    public ITemplate TabTemplate
    {
        get { return tabTemplate; }
        set { tabTemplate = value; }
    }
    protected override void CreateChildControls()
    {
        if (TabTemplate != null)
        {
            Controls.Clear();
            TabTemplate i = new TabTemplate();
            TabTemplate.InstantiateIn(i);
            Controls.Add(i);
        }
    }
    protected override void Render(HtmlTextWriter writer)
    {
        EnsureChildControls();
        base.Render(writer);
    }
}


public class TabTemplate : Control, INamingContainer
{
}
4

1 回答 1

1

ParseChildren 属性告诉 .NET 是将控件的子项视为属性还是控件。对于您的第一个示例,您希望将孩子视为控件,因此添加

[ ParseChildren(ChildrenAsProperties = false) ]

对于第二个,您需要 ChildrenAsProperties=true,以及 ITemplate 类型的 TabTemplate 属性。之后涉及到一些管道,这个 MSDN 示例描述了这些。但是,如果您只需要一个模板,它不会增加很多价值。

于 2009-03-05T21:37:30.720 回答