Menu.StaticSubMenuIndent 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定要讓子功能表在靜態功能表內縮排的間距 (以像素為單位)。
public:
property System::Web::UI::WebControls::Unit StaticSubMenuIndent { System::Web::UI::WebControls::Unit get(); void set(System::Web::UI::WebControls::Unit value); };
[System.Web.UI.Themeable(true)]
public System.Web.UI.WebControls.Unit StaticSubMenuIndent { get; set; }
[<System.Web.UI.Themeable(true)>]
member this.StaticSubMenuIndent : System.Web.UI.WebControls.Unit with get, set
Public Property StaticSubMenuIndent As Unit
屬性值
Unit,代表要讓子功能表在靜態功能表內縮排的間距 (以像素為單位)。 預設值是 0。
- 屬性
例外狀況
所選取 Unit 的值小於 0。
範例
下列程式碼範例示範如何使用 StaticSubMenuIndent 屬性,將靜態功能表中的子功能表專案縮排 10 圖元。
<%@ 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" >
<head runat="server">
<title>Menu StaticSubMenuIndent Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>Menu StaticSubMenuIndent Example</h3>
<asp:menu id="NavigationMenu"
staticdisplaylevels="2"
staticsubmenuindent="10"
orientation="Vertical"
runat="server">
<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" >
<head runat="server">
<title>Menu StaticSubMenuIndent Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>Menu StaticSubMenuIndent Example</h3>
<asp:menu id="NavigationMenu"
staticdisplaylevels="2"
staticsubmenuindent="10"
orientation="Vertical"
runat="server">
<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>
備註
當靜態功能表顯示一個以上的功能表層級 (時,如果 StaticDisplayLevels 屬性設定為高於 1) 的值,請使用 StaticSubMenuIndent 屬性來指定要縮排靜態功能表內子功能表專案的圖元數目。