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使用 属性可指定每个菜单项中显示的文本是否换行。 当文本空间不足时,它会自动拆分并在下一行继续。