Menu.ItemWrap 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
메뉴 항목 텍스트를 줄 바꿈해야 하는지 여부를 나타내는 값을 가져오거나 설정합니다.
public:
property bool ItemWrap { bool get(); void set(bool value); };
public bool ItemWrap { get; set; }
member this.ItemWrap : bool with get, set
Public Property ItemWrap As Boolean
속성 값
메뉴 항목 텍스트를 줄 바꿈하려면 true
이고, 그렇지 않으면 false
입니다. 기본값은 false
입니다.
예제
다음 코드 예제를 사용 하는 방법에 설명 합니다 ItemWrap 속성에서 텍스트 줄 바꿈을 사용을 Menu 컨트롤입니다.
<%@ 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 ItemWrap Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>Menu ItemWrap Example</h3>
<!-- Place the Menu control in a table to force text -->
<!-- wrapping to occur. -->
<table style="border:1; height:100%">
<tr>
<td style="width:200px; vertical-align:top">
<asp:menu id="NavigationMenu"
staticdisplaylevels="2"
staticsubmenuindent="10"
orientation="Vertical"
itemwrap="true"
dynamicverticaloffset="10"
runat="server">
<staticmenuitemstyle verticalpadding="10"/>
<items>
<asp:menuitem text="How to Add a Menu Control to a Web Form">
<asp:menuitem text="Procedure 1">
<asp:menuitem text="Step 1"/>
<asp:menuitem text="Step 2"/>
</asp:menuitem>
</asp:menuitem>
</items>
</asp:menu>
</td>
</tr>
</table>
</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 ItemWrap Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>Menu ItemWrap Example</h3>
<!-- Place the Menu control in a table to force text -->
<!-- wrapping to occur. -->
<table style="border:1; height:100%">
<tr>
<td style="width:200px; vertical-align:top">
<asp:menu id="NavigationMenu"
staticdisplaylevels="2"
staticsubmenuindent="10"
orientation="Vertical"
itemwrap="true"
dynamicverticaloffset="10"
runat="server">
<staticmenuitemstyle verticalpadding="10"/>
<items>
<asp:menuitem text="How to Add a Menu Control to a Web Form">
<asp:menuitem text="Procedure 1">
<asp:menuitem text="Step 1"/>
<asp:menuitem text="Step 2"/>
</asp:menuitem>
</asp:menuitem>
</items>
</asp:menu>
</td>
</tr>
</table>
</form>
</body>
</html>
설명
사용 된 ItemWrap 속성을 통해 각 메뉴 항목에 표시할 텍스트를 줄 바꿈할지 여부를 지정 합니다. 텍스트 공간이 부족 하면가 자동으로 분할 되 고 다음 줄에서 계속 합니다.