Menu.DynamicBottomSeparatorImageUrl 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
다른 메뉴 항목과 구분하기 위해 각 동적 메뉴 항목의 아래쪽에 표시할 이미지의 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 속성입니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET