MenuItemStyle 类

定义

表示 Menu 控件中一个菜单项的样式。 此类不能被继承。

public ref class MenuItemStyle sealed : System::Web::UI::WebControls::Style
public sealed class MenuItemStyle : System.Web.UI.WebControls.Style
type MenuItemStyle = class
    inherit Style
Public NotInheritable Class MenuItemStyle
Inherits Style
继承

示例

下面的代码示例演示如何通过设置从 DynamicMenuItemStyle、 、 DynamicHoverStyleStaticMenuItemStyleStaticHoverStyle 属性返回的 MenuItemStyle 对象的样式属性来控制控件中的Menu菜单项的外观。


<%@ Page Language="C#" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >

  <!-- For the hover styles of the Menu control to  -->
  <!-- work correctly, you must include this head   -->
  <!-- element.                                     -->
  <head runat="server">
    <title>MenuItemStyle Example</title>
</head>

  <body>
    <form id="form1" runat="server">
    
      <h3>MenuItemStyle Example</h3>
    
      <!-- Set the style properties of the        -->
      <!-- MenuItemStyle objects contained in the -->
      <!-- StaticMenuItemStyle, StaticHoverStyle, -->
      <!-- DynamicMenuItemStyle, and              -->
      <!-- DynamicHoverStyle properties.          -->
      
      <asp:menu id="NavigationMenu"
        staticdisplaylevels="2"
        staticsubmenuindent="10" 
        orientation="Vertical"
        runat="server">
        
        <staticmenuitemstyle backcolor="LightSteelBlue"
          horizontalpadding="5"
          verticalpadding="2"
          font-names="Arial"   
          forecolor="Black"/>
        <statichoverstyle backcolor="LightSkyBlue"
          font-names="Arial"
          forecolor="Red"/>
        <dynamicmenuitemstyle backcolor="Black"
          horizontalpadding="10"
          verticalpadding="4"
          itemspacing="2"
          font-names="Arial"
          forecolor="Silver"/>
        <dynamichoverstyle backcolor="LightSkyBlue"
          font-names="Arial"
          forecolor="Red"/>
      
        <items>
          <asp:menuitem text="Home"
            tooltip="Home">
            <asp:menuitem text="Music"
              tooltip="Music">
              <asp:menuitem text="Classical"
                tooltip="Classical"/>
              <asp:menuitem text="Rock"
                tooltip="Rock"/>
              <asp:menuitem text="Jazz"
                tooltip="Jazz"/>
            </asp:menuitem>
            <asp:menuitem text="Movies"
              tooltip="Movies">
              <asp:menuitem text="Action"
                tooltip="Action"/>
              <asp:menuitem text="Drama"
                tooltip="Drama"/>
              <asp:menuitem text="Musical"
                tooltip="Musical"/>
            </asp:menuitem>
          </asp:menuitem>
        </items>
      
      </asp:menu>

    </form>
  </body>
</html>

<%@ Page Language="VB" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >

  <!-- For the hover styles of the Menu control to  -->
  <!-- work correctly, you must include this head   -->
  <!-- element.                                     -->
  <head runat="server">
    <title>MenuItemStyle Example</title>
</head>

  <body>
    <form id="form1" runat="server">
    
      <h3>MenuItemStyle Example</h3>
    
      <!-- Set the style properties of the        -->
      <!-- MenuItemStyle objects contained in the -->
      <!-- StaticMenuItemStyle, StaticHoverStyle, -->
      <!-- DynamicMenuItemStyle, and              -->
      <!-- DynamicHoverStyle properties.          -->
      
      <asp:menu id="NavigationMenu"
        staticdisplaylevels="2"
        staticsubmenuindent="10" 
        orientation="Vertical"
        runat="server">
        
        <staticmenuitemstyle backcolor="LightSteelBlue"
          horizontalpadding="5"
          verticalpadding="2"
          font-names="Arial"   
          forecolor="Black"/>
        <statichoverstyle backcolor="LightSkyBlue"
          font-names="Arial"
          forecolor="Red"/>
        <dynamicmenuitemstyle backcolor="Black"
          horizontalpadding="10"
          verticalpadding="4"
          itemspacing="2"
          font-names="Arial"
          forecolor="Silver"/>
        <dynamichoverstyle backcolor="LightSkyBlue"
          font-names="Arial"
          forecolor="Red"/>
      
        <items>
          <asp:menuitem text="Home"
            tooltip="Home">
            <asp:menuitem text="Music"
              tooltip="Music">
              <asp:menuitem text="Classical"
                tooltip="Classical"/>
              <asp:menuitem text="Rock"
                tooltip="Rock"/>
              <asp:menuitem text="Jazz"
                tooltip="Jazz"/>
            </asp:menuitem>
            <asp:menuitem text="Movies"
              tooltip="Movies">
              <asp:menuitem text="Action"
                tooltip="Action"/>
              <asp:menuitem text="Drama"
                tooltip="Drama"/>
              <asp:menuitem text="Musical"
                tooltip="Musical"/>
            </asp:menuitem>
          </asp:menuitem>
        </items>
      
      </asp:menu>

    </form>
  </body>
</html>

注解

MenuItemStyle使用 类表示控件中菜单项的Menu样式。 菜单项显示在静态菜单或动态菜单中。 静态菜单始终显示在控件中 Menu ,而仅当用户将鼠标指针置于包含动态子菜单的父菜单项上时,才会显示动态菜单。 可以为每个不同的菜单项类型指定不同的样式特征 (,例如字号和颜色) 。 下表列出了可用的菜单项样式。

菜单项样式属性 说明
DynamicHoverStyle 鼠标指针位于动态菜单项上的样式设置。
DynamicMenuItemStyle 单个动态菜单项的样式设置。
DynamicMenuStyle 动态菜单的样式设置。
DynamicSelectedStyle 当前所选动态菜单项的样式设置。
StaticHoverStyle 鼠标指针放在静态菜单项上的样式设置。
StaticMenuItemStyle 单个静态菜单项的样式设置。
StaticMenuStyle 静态菜单的样式设置。
StaticSelectedStyle 当前所选静态菜单项的样式设置。

为静态菜单项设置多个样式属性时,将按以下顺序应用样式属性:

  1. StaticMenuStyle.

  2. StaticMenuItemStyle. LevelMenuItemStyles如果定义了集合或LevelSubMenuStyles集合,则此时会应用它,覆盖其他菜单项样式属性。

  3. StaticSelectedStyle. LevelSelectedStyles如果定义了集合,则此时会应用该集合,覆盖其他菜单项样式属性。

  4. StaticHoverStyle.

同样,动态菜单项的样式属性按以下顺序应用:

  1. DynamicMenuStyle.

  2. DynamicMenuItemStyle. LevelMenuItemStyles如果定义了集合或LevelSubMenuStyles集合,则此时会应用它,覆盖其他菜单项样式属性。

  3. DynamicSelectedStyle. LevelSelectedStyles如果定义了集合,则此时会应用该集合,覆盖其他菜单项样式属性。

  4. DynamicHoverStyle.

MenuItemStyleStyle 类继承其大部分成员。 它通过提供控制菜单项文本周围空间量以及相邻菜单项之间的间距的属性来扩展 Style 类。 HorizontalPadding使用 属性可以控制菜单项文本左侧和右侧的空间量。 同样,属性 VerticalPadding 控制菜单项文本上方和下方的空间量。 可以通过设置 ItemSpacing 属性来控制应用对象的菜单项MenuItemStyle与其相邻菜单项之间的间距。

有关继承的样式设置的详细信息,请参阅 Style

构造函数

MenuItemStyle()

初始化 MenuItemStyle 类的新实例。

MenuItemStyle(StateBag)

使用指定的状态信息初始化 MenuItemStyle 类的新实例。

属性

BackColor

获取或设置 Web 服务器控件的背景色。

(继承自 Style)
BorderColor

获取或设置 Web 服务器控件的边框颜色。

(继承自 Style)
BorderStyle

获取或设置 Web 服务器控件的边框样式。

(继承自 Style)
BorderWidth

获取或设置 Web 服务器控件的边框宽度。

(继承自 Style)
CanRaiseEvents

获取一个指示组件是否可以引发事件的值。

(继承自 Component)
Container

获取包含 IContainerComponent

(继承自 Component)
CssClass

获取或设置由 Web 服务器控件在客户端呈现的级联样式表 (CSS) 类。

(继承自 Style)
DesignMode

获取一个值,用以指示 Component 当前是否处于设计模式。

(继承自 Component)
Events

获取附加到此 Component 的事件处理程序的列表。

(继承自 Component)
Font

获取与 Web 服务器控件关联的字体属性。

(继承自 Style)
ForeColor

获取或设置 Web 服务器控件的前景色(通常是文本颜色)。

(继承自 Style)
Height

获取或设置 Web 服务器控件的高度。

(继承自 Style)
HorizontalPadding

获取或设置菜单项文本左侧和右侧的间距。

IsEmpty

保护属性。 获取一个值,该值指示是否已在状态袋中定义任何样式元素。

(继承自 Style)
IsTrackingViewState

返回一个值,该值指示状态袋中是否有任何已定义的样式元素。

(继承自 Style)
ItemSpacing

获取或设置应用了 MenuItemStyle 对象的菜单项与其相邻菜单项之间的垂直间距。

RegisteredCssClass

获取已向控件注册的级联样式表 (CSS) 类。

(继承自 Style)
Site

获取或设置 ComponentISite

(继承自 Component)
VerticalPadding

获取或设置菜单项文本上方和下方的间距。

ViewState

获取保存样式元素的状态袋。

(继承自 Style)
Width

获取或设置 Web 服务器控件的宽度。

(继承自 Style)

方法

AddAttributesToRender(HtmlTextWriter)

将需要呈现的 HTML 特性和样式添加到指定的 HtmlTextWriter 中。 此方法主要由控件开发人员使用。

(继承自 Style)
AddAttributesToRender(HtmlTextWriter, WebControl)

将需要呈现的 HTML 特性和样式添加到指定的 HtmlTextWriter 和 Web 服务器控件。 此方法主要由控件开发人员使用。

(继承自 Style)
CopyFrom(Style)

将指定的 Style 对象的样式属性复制到 MenuItemStyle 类的当前实例中。

CreateObjRef(Type)

创建一个对象,该对象包含生成用于与远程对象进行通信的代理所需的全部相关信息。

(继承自 MarshalByRefObject)
Dispose()

释放由 Component 使用的所有资源。

(继承自 Component)
Dispose(Boolean)

释放由 Component 占用的非托管资源,还可以另外再释放托管资源。

(继承自 Component)
Equals(Object)

确定指定对象是否等于当前对象。

(继承自 Object)
FillStyleAttributes(CssStyleCollection, IUrlResolutionService)

将指定对象的样式属性添加到 CssStyleCollection 对象。

(继承自 Style)
GetHashCode()

作为默认哈希函数。

(继承自 Object)
GetLifetimeService()
已过时.

检索控制此实例的生存期策略的当前生存期服务对象。

(继承自 MarshalByRefObject)
GetService(Type)

返回一个对象,该对象表示由 Component 或它的 Container 提供的服务。

(继承自 Component)
GetStyleAttributes(IUrlResolutionService)

检索实现了 CssStyleCollection 的指定对象的 IUrlResolutionService 对象。

(继承自 Style)
GetType()

获取当前实例的 Type

(继承自 Object)
InitializeLifetimeService()
已过时.

获取生存期服务对象来控制此实例的生存期策略。

(继承自 MarshalByRefObject)
LoadViewState(Object)

加载以前保存的状态。

(继承自 Style)
MemberwiseClone()

创建当前 Object 的浅表副本。

(继承自 Object)
MemberwiseClone(Boolean)

创建当前 MarshalByRefObject 对象的浅表副本。

(继承自 MarshalByRefObject)
MergeWith(Style)

将指定的 Style 对象的样式属性与 MenuItemStyle 类的当前实例的样式属性组合在一起。

Reset()

MenuItemStyle 类的当前实例返回到其原始状态。

SaveViewState()

受保护的方法。 保存在调用 TrackViewState() 方法后已修改的任何状态。

(继承自 Style)
SetBit(Int32)

受保护的内部方法。 设置一个内部位屏蔽字段以指示存储在状态袋中的样式属性。

(继承自 Style)
SetDirty()

标记 Style 以便在视图状态中记录其状态。

(继承自 Style)
ToString()

返回表示当前对象的字符串。

(继承自 Style)
TrackViewState()

受保护的方法。 标记跟踪控件状态更改的起始点。 跟踪开始之后所做的任何更改都将被跟踪并保存到控件视图状态中。

(继承自 Style)

事件

Disposed

在通过调用 Dispose() 方法释放组件时发生。

(继承自 Component)

显式接口实现

IStateManager.IsTrackingViewState

获取一个值,该值指示服务器控件是否在跟踪其视图状态更改。

(继承自 Style)
IStateManager.LoadViewState(Object)

加载以前保存的状态。

(继承自 Style)
IStateManager.SaveViewState()

返回包含状态更改的对象。

(继承自 Style)
IStateManager.TrackViewState()

开始跟踪状态更改。

(继承自 Style)

适用于

另请参阅