FineUI/FineUI.Examples/layout/vbox_collapse.aspx
三生石上 79ad9e6bc2 v4.2.3
2016-01-10 01:19:30 -05:00

43 lines
2.0 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="vbox_collapse.aspx.cs" Inherits="FineUI.Examples.layout.vbox_collapse" %>
<!DOCTYPE html>
<html>
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<link href="../res/css/common.css" rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
<f:PageManager ID="PageManager1" runat="server" />
<f:Panel ID="Panel2" runat="server" Height="550px" Width="850px" ShowBorder="True" EnableCollapse="true"
Layout="VBox" BoxConfigChildMargin="0 0 5 0" BodyPadding="5px"
ShowHeader="True" Title="面板Layout=VBox BoxConfigChildMargin=0 0 5 0">
<Items>
<f:Panel ID="Panel3" Title="面板1" Height="120px" runat="server"
BodyPadding="5px" ShowBorder="true" ShowHeader="true" EnableCollapse="true">
<Items>
<f:Label ID="Label2" runat="server" Text="Height=120px">
</f:Label>
</Items>
</f:Panel>
<f:Panel ID="Panel1" Title="面板2" BoxFlex="1" runat="server"
BodyPadding="5px" ShowBorder="true" ShowHeader="true" EnableCollapse="true">
<Items>
<f:Label ID="Label1" runat="server" Text="BoxFlex=1">
</f:Label>
</Items>
</f:Panel>
<f:Panel ID="Panel4" Title="面板3" BoxFlex="2" Margin="0"
runat="server" BodyPadding="5px" ShowBorder="true" ShowHeader="true" EnableCollapse="true">
<Items>
<f:Label ID="Label3" runat="server" Text="BoxFlex=2 Margin=0">
</f:Label>
</Items>
</f:Panel>
</Items>
</f:Panel>
</form>
</body>
</html>