System.Web.UI.WebControls Namespace Menu Class
.NET Framework version 2.0
Returns a MenuItemStyleCollection object that contains the style settings that are applied to the submenu items in the static menu based on their level in a Menu control.
Inline |
<asp:menu levelsubmenustyles = value ... > |
Script |
Menu.LevelSubMenuStyles [ = value ] |
value |
A reference to the MenuItemStyleCollection that contains the style settings that are applied to the submenu items in the static menu based on their level in a Menu control. |
The property is read/write with no default value.
Use the LevelSubMenuStyles collection as an alternative to the StaticMenuItemStyle to control the style of the static submenu items displayed in the static menu at the individual levels.
The styles contained in this collection are applied to the static submenu items based on their menu level. The first style in the collection corresponds to the style of the first static submenu level displayed in the static menu. The second style in the collection corresponds to the style of the second submenu level displayed in the static menu, and so on.
This collection is most often used to generate table of contents-style navigation menus where menu items at a certain level should have the same appearance, regardless of whether they have submenus.
NOTE: If a style is defined for a certain level using the LevelSubMenuStyles collection, this overrides any static submenu item style settings at that level.
The following example demonstrates how to use the LevelSubMenuStyles collection to apply style settings to the submenu items displayed in the static menu of a Menu control based on their level.
<asp:menu id = "navigationMenu"
staticdisplaylevels=2
staticsubmenuindent=10
orientation = "Vertical"
target = "_blank"
runat = "server">
<levelsubmenustyles>
<asp:submenustyle backcolor = "LightSteelBlue"
forecolor = "Black"/>
<asp:submenustyle backcolor = "SkyBlue"
forecolor = "Gray"/>
</levelsubmenustyles>
<items>
...
</items>
</asp:menu>
Menu Members LevelMenuItemStyles LevelSelectedStyles