Menu.DynamicBottomSeparatorImageUrl 屬性

定義

取得或設定顯示在每個動態功能表項目底部,以便與其他功能表項目隔開之影像的 URL。

public:
 property System::String ^ DynamicBottomSeparatorImageUrl { System::String ^ get(); void set(System::String ^ value); };
[System.Web.UI.Themeable(true)]
public string DynamicBottomSeparatorImageUrl { get; set; }
[<System.Web.UI.Themeable(true)>]
member this.DynamicBottomSeparatorImageUrl : string with get, set
Public Property DynamicBottomSeparatorImageUrl As String

屬性值

String

顯示在每個動態功能表項目底部之分隔符號影像的 URL。 預設值是空字串 (""),表示這個屬性未設定。

屬性

範例

下列程式碼範例示範如何使用 DynamicBottomSeparatorImageUrl 屬性,在每個動態功能表項目底部顯示分隔符號影像。


<%@ 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 DynamicBottomSeparatorImageUrl Example</title>
</head>
<body>
    <form id="form1" runat="server">
    
      <h3>Menu DynamicBottomSeparatorImageUrl Example</h3>
    
      <asp:menu id="NavigationMenu"
        dynamicbottomseparatorimageurl="Images\Separator.jpg"
        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 DynamicBottomSeparatorImageUrl Example</title>
</head>
<body>
    <form id="form1" runat="server">
    
      <h3>Menu DynamicBottomSeparatorImageUrl Example</h3>
    
      <asp:menu id="NavigationMenu"
        dynamicbottomseparatorimageurl="Images\Separator.jpg"
        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>

備註

DynamicBottomSeparatorImageUrl使用 屬性來指定選擇性自訂影像,以顯示在每個動態功能表項目底部。 此影像可作為功能表項目之間的分隔符號,通常是線條的影像。

注意

您也可以藉由設定 DynamicTopSeparatorImageUrl 屬性,在每個動態功能表項目頂端顯示分隔符號影像。

適用於

另請參閱