Menu.StaticItemTemplate Property
.NET Framework 3.0
Gets or sets the template that contains the custom content to render for a static menu.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
[TemplateContainerAttribute(typeof(MenuItemTemplateContainer))] public: property ITemplate^ StaticItemTemplate { ITemplate^ get (); void set (ITemplate^ value); }
/** @property */ public ITemplate get_StaticItemTemplate () /** @property */ public void set_StaticItemTemplate (ITemplate value)
public function get StaticItemTemplate () : ITemplate public function set StaticItemTemplate (value : ITemplate)
Not applicable.
Property Value
A ITemplate that contains the custom content for a static menu. The default value is null, which indicates that this property is not set.Instead of using the built-in rendering for a static menu, you can define your own user interface (UI) for a static menu item by using the StaticItemTemplate property. To specify a custom template for a static menu item, first place <StaticTemplate> tags between the opening and closing tags of the Menu control. You can then list the contents of the template between the opening and closing <StaticTemplate> tags. You can further control the style of a static menu by using the StaticMenuStyle property.
Community Additions
ADD
Show: