Menu.ScrollUpImageUrl 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定顯示在動態功能表中之影像的 URL,表示使用者可以向上捲動以檢視其他功能表項目。
public:
property System::String ^ ScrollUpImageUrl { System::String ^ get(); void set(System::String ^ value); };
public string ScrollUpImageUrl { get; set; }
member this.ScrollUpImageUrl : string with get, set
Public Property ScrollUpImageUrl As String
屬性值
顯示在動態功能表中之影像的 URL,表示使用者可以向上捲動以檢視其他功能表項目。 預設值是空字串 (""),表示這個屬性未設定。
範例
下列程式碼範例示範如何使用 ScrollUpImageUrl 屬性來顯示自訂影像,指出使用者可以在動態功能表中捲動其他功能表項目。
<%@ 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 Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>Menu Example</h3>
<asp:menu id="NavigationMenu"
staticdisplaylevels="2"
staticsubmenuindent="10"
orientation="Vertical"
ScrollDownImageUrl="Images\ScrollDownImage.jpg"
ScrollDownText="Down"
ScrollUpImageUrl="Images\ScrollUpImage.jpg"
ScrollUpText="Up"
runat="server">
<dynamicmenustyle Height="50"/>
<items>
<asp:menuitem text="Home">
<asp:menuitem text="Category 1">
<asp:menuitem text="Item 1"/>
<asp:menuitem text="Item 2"/>
<asp:menuitem text="Item 3"/>
<asp:menuitem text="Item 4"/>
<asp:menuitem text="Item 5"/>
<asp:menuitem text="Item 6"/>
<asp:menuitem text="Item 7"/>
<asp:menuitem text="Item 8"/>
<asp:menuitem text="Item 9"/>
<asp:menuitem text="Item 10"/>
</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 Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>Menu Example</h3>
<asp:menu id="NavigationMenu"
staticdisplaylevels="2"
staticsubmenuindent="10"
orientation="Vertical"
ScrollDownImageUrl="Images\ScrollDownImage.jpg"
ScrollDownText="Down"
ScrollUpImageUrl="Images\ScrollUpImage.jpg"
ScrollUpText="Up"
runat="server">
<dynamicmenustyle Height="50"/>
<items>
<asp:menuitem text="Home">
<asp:menuitem text="Category 1">
<asp:menuitem text="Item 1"/>
<asp:menuitem text="Item 2"/>
<asp:menuitem text="Item 3"/>
<asp:menuitem text="Item 4"/>
<asp:menuitem text="Item 5"/>
<asp:menuitem text="Item 6"/>
<asp:menuitem text="Item 7"/>
<asp:menuitem text="Item 8"/>
<asp:menuitem text="Item 9"/>
<asp:menuitem text="Item 10"/>
</asp:menuitem>
</asp:menuitem>
</items>
</asp:menu>
</form>
</body>
</html>
備註
.NET 4.0 轉譯模式不支援此屬性。 如果需要此屬性,您可以在頁面的程式碼中新增下列內容,將功能表設定為 .NET 3.5 轉譯模式:
menuInstance.RenderingCompatibility = new Version(3, 5);
ScrollUpImageUrl使用 屬性可指定要顯示在每個動態功能表頂端的自訂影像,以指出使用者可以向上捲動其他功能表項目。
注意
如果未設定這個屬性,則會使用內部的預設映射。
您可以藉由設定 ScrollUpText 屬性來指定影像的替代文字。