Menu.StaticEnableDefaultPopOutImage 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,表示是否顯示內建影像以表示靜態功能表項目具有子功能表。
public:
property bool StaticEnableDefaultPopOutImage { bool get(); void set(bool value); };
public bool StaticEnableDefaultPopOutImage { get; set; }
member this.StaticEnableDefaultPopOutImage : bool with get, set
Public Property StaticEnableDefaultPopOutImage As Boolean
屬性值
true
表示顯示具有子功能表之靜態功能表項目的內建影像,否則為 false
。 預設為 true
。
範例
下列程式碼範例示範如何使用 StaticEnableDefaultPopOutImage 屬性來隱藏影像,指出靜態功能表項目有子功能表。 屬性 StaticPopOutImageUrl 也必須設定為空字串 (「」「) ,才能隱藏影像。
<%@ 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 StaticEnableDefaultPopOutImage Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>Menu StaticEnableDefaultPopOutImage Example</h3>
<asp:menu id="NavigationMenu"
staticenabledefaultpopoutimage="false"
dynamichorizontaloffset="10"
staticdisplaylevels="1"
orientation="Vertical"
runat="server">
<items>
<asp:menuitem navigateurl="Home.aspx"
text="Home"
tooltip="Home">
<asp:menuitem navigateurl="Music.aspx"
text="Music"
tooltip="Music">
<asp:menuitem navigateurl="Classical.aspx"
text="Classical"
tooltip="Classical"/>
<asp:menuitem navigateurl="Rock.aspx"
text="Rock"
tooltip="Rock"/>
<asp:menuitem navigateurl="Jazz.aspx"
text="Jazz"
tooltip="Jazz"/>
</asp:menuitem>
<asp:menuitem navigateurl="Movies.aspx"
text="Movies"
tooltip="Movies">
<asp:menuitem navigateurl="Action.aspx"
text="Action"
tooltip="Action"/>
<asp:menuitem navigateurl="Drama.aspx"
text="Drama"
tooltip="Drama"/>
<asp:menuitem navigateurl="Musical.aspx"
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 StaticEnableDefaultPopOutImage Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>Menu StaticEnableDefaultPopOutImage Example</h3>
<asp:menu id="NavigationMenu"
staticenabledefaultpopoutimage="false"
dynamichorizontaloffset="10"
staticdisplaylevels="1"
orientation="Vertical"
runat="server">
<items>
<asp:menuitem navigateurl="Home.aspx"
text="Home"
tooltip="Home">
<asp:menuitem navigateurl="Music.aspx"
text="Music"
tooltip="Music">
<asp:menuitem navigateurl="Classical.aspx"
text="Classical"
tooltip="Classical"/>
<asp:menuitem navigateurl="Rock.aspx"
text="Rock"
tooltip="Rock"/>
<asp:menuitem navigateurl="Jazz.aspx"
text="Jazz"
tooltip="Jazz"/>
</asp:menuitem>
<asp:menuitem navigateurl="Movies.aspx"
text="Movies"
tooltip="Movies">
<asp:menuitem navigateurl="Action.aspx"
text="Action"
tooltip="Action"/>
<asp:menuitem navigateurl="Drama.aspx"
text="Drama"
tooltip="Drama"/>
<asp:menuitem navigateurl="Musical.aspx"
text="Musical"
tooltip="Musical"/>
</asp:menuitem>
</asp:menuitem>
</items>
</asp:menu>
</form>
</body>
</html>
備註
當靜態功能表項目包含子功能表時,可以顯示影像來指出使用者可以展開功能表。 有兩種方式可以顯示此影像:
將 StaticEnableDefaultPopOutImage 屬性設定為
true
,以使用內建映射 (預設) 。StaticPopOutImageUrl設定 屬性以指定自訂映射。
StaticPopOutImageUrl如果已設定 屬性,該映射會覆寫內建映射,而不論 屬性的值 StaticEnableDefaultPopOutImage 為何。
注意
StaticPopOutImageUrl如果未設定屬性,且 StaticEnableDefaultPopOutImage 屬性設定為 false
,則不會顯示任何影像。
您可以藉由設定 StaticPopOutImageTextFormatString 屬性來指定影像的替代文字。