ASP.NET Panel Wrap 属性
Panel 控件
定义和用法
Wrap 属性用于设置或返回在 Panel 控件中内容是否折行。
语法
<asp:Panel Wrap="TRUE|FALSE" runat="server">
Some Content
</asp:Panel>
Some Content
</asp:Panel>
实例
下面的实例把 Panel 控件中的 Wrap 属性设置为 "FALSE":
<form runat="server">
<asp:Panel ID="Pan1" Width="250px"
Wrap="FALSE" runat="server">
Some content
</asp:Panel>
</form>
<asp:Panel ID="Pan1" Width="250px"
Wrap="FALSE" runat="server">
Some content
</asp:Panel>
</form>
演示实例 »
Panel 控件
点我分享笔记