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 menu items based on their level in a Menu control.
Inline |
<asp:menu levelmenuitemstyles = value ... > |
Script |
Menu.LevelMenuItemStyles [ = value ] |
value |
A reference to the MenuItemStyleCollection that contains the style settings that are applied to menu items based on their level in a Menu control. |
The property is read/write with no default value.
Use the LevelMenuItemStyles collection as an alternative to the DynamicMenuItemStyle and StaticMenuItemStyle properties to control the style of menu items at the individual levels of the menu.
The styles contained in this collection are applied to the menu items based on their menu level. The first style in the collection corresponds to the style of menu items in the first level of the menu. The second style in the collection corresponds to the style of menu items in the second level of the 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 LevelMenuItemStyles collection, this overrides any menu item style settings for the menu items at that level.
The following example demonstrates how to use the LevelMenuItemStyles collection to apply style settings to the menu items in a Menu control based on their level.
<asp:menu id = "navigationMenu"
staticdisplaylevels=2
staticsubmenuindent=10
orientation = "Vertical"
target = "_blank"
runat = "server">
<levelmenuitemstyles>
<asp:menuitemstyle BackColor = "LightSteelBlue"
forecolor = "Black"/>
<asp:menuitemstyle BackColor = "SkyBlue"
forecolor = "Black"/>
<asp:menuitemstyle BackColor = "LightSkyBlue"
forecolor = "Black"/>
</levelmenuitemstyles>
<levelselectedstyles>
<asp:menuitemstyle BackColor = "Cyan"
forecolor = "Gray"/>
<asp:menuitemstyle BackColor = "LightCyan"
forecolor = "Gray"/>
<asp:menuitemstyle BackColor = "PaleTurquoise"
forecolor = "Gray"/>
</levelselectedstyles>
<items>
...
</items>
</asp:menu>
Menu Members LevelSelectedStyles LevelSubMenuStyles