FineUI 官方论坛
标题:
怎样隐藏Panel的4条边框中的一条?
[打印本页]
作者:
yygy
时间:
2016-11-6 22:13
标题:
怎样隐藏Panel的4条边框中的一条?
ShowHeader="false" 可以隐藏4条边框,若想隐藏其中一条怎样写?BodyStyle="border-left-style:none"这样无效
作者:
sanshi
时间:
2016-11-6 23:10
定义个CSS样式,然后CssClass来引用
作者:
yygy
时间:
2016-11-7 21:45
[attach]9390[/attach]
<html>
<head runat="server">
<title></title>
<style type="text/css">
.borderLeft {
border-left-style:none
}
</style>
</head>
<body>
<form id="form1" runat="server">
<f:PageManager ID="PageManager1" OnCustomEvent="PageManager1_CustomEvent" runat="server" />
<f:Panel ID="Panel2" runat="server" Height="250px" Width="850px" ShowBorder="True" EnableCollapse="true"
Layout="HBox" BoxConfigAlign="Stretch" BoxConfigPosition="Start"
BodyPadding="5px" ShowHeader="True"
Title="面板">
<Items>
<f:Panel ID="Panel1" Title="面板1" BoxFlex="1" runat="server"
BodyPadding="5px" ShowBorder="true" ShowHeader="false">
<Items>
<f:Label ID="Label1" runat="server" Text="BoxFlex=1">
</f:Label>
</Items>
</f:Panel>
<f:Panel ID="Panel3" Title="面板2" Width="150px" CssClass="borderLeft"
runat="server" BodyPadding="0px" ShowBorder="true" ShowHeader="false">
<Items>
<f:Label ID="Label2" runat="server" Text="Width=150px">
</f:Label>
</Items>
</f:Panel>
</Items>
</f:Panel>
</form>
</body>
</html>
这样无效。
复制代码
欢迎光临 FineUI 官方论坛 (https://fineui.com/BBS/)
Powered by Discuz! X3.4