다음을 통해 공유


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

속성 값

각 동적 메뉴 항목의 아래쪽에 표시되는 구분 기호 이미지의 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 .

적용 대상

추가 정보