2013-11-01 14:13:51 +08:00

100 lines
5.1 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="fit.aspx.cs" Inherits="FineUI.Examples.layout.fit" %>
<!DOCTYPE html>
<html>
<head runat="server">
<title></title>
<link href="../css/main.css" rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
<x:PageManager ID="PageManager1" runat="server" />
<x:Panel ID="Panel3" Title="面板一未设置Layout属性" runat="server" Height="300px" Width="850px" EnableFrame="true" EnableCollapse="true"
BodyPadding="5px" ShowBorder="True" ShowHeader="True">
<Items>
<x:Form ID="Form3" runat="server" ShowBorder="True" BodyPadding="5px" ShowHeader="false" Title="表单">
<Rows>
<x:FormRow>
<Items>
<x:Label ID="Label2" Label="文本" Text="文本内容" runat="server">
</x:Label>
</Items>
</x:FormRow>
<x:FormRow>
<Items>
<x:TextBox ID="TextBox2" Label="输入框" runat="server">
</x:TextBox>
<x:Button ID="Button2" Text="按钮" runat="server">
</x:Button>
</Items>
</x:FormRow>
</Rows>
</x:Form>
</Items>
</x:Panel>
<br />
<x:Panel ID="Panel1" Title="面板二Layout=Fit" runat="server" Layout="Fit" Height="300px" EnableFrame="true" EnableCollapse="true"
BodyPadding="5px" Width="850px" ShowBorder="True"
ShowHeader="True">
<Items>
<x:Form ID="Form2" runat="server" ShowBorder="True" BodyPadding="5px" ShowHeader="false" Title="表单">
<Rows>
<x:FormRow>
<Items>
<x:Label ID="Label1" Label="文本" Text="文本内容" runat="server">
</x:Label>
</Items>
</x:FormRow>
<x:FormRow>
<Items>
<x:TextBox ID="TextBox1" Label="输入框" runat="server">
</x:TextBox>
<x:Button ID="Button1" Text="按钮" runat="server">
</x:Button>
</Items>
</x:FormRow>
</Rows>
</x:Form>
</Items>
</x:Panel>
<br />
<x:Panel ID="Panel2" Title="面板三Layout=Fit" runat="server" Layout="Fit" Height="300px" EnableFrame="true" EnableCollapse="true"
BodyPadding="5px" Width="850px" ShowBorder="True"
ShowHeader="True">
<Toolbars>
<x:Toolbar ID="Toolbar1" runat="server">
<Items>
<x:Button ID="Button4" Text="按钮一" runat="server">
</x:Button>
<x:Button ID="Button5" Text="按钮二" runat="server">
</x:Button>
</Items>
</x:Toolbar>
</Toolbars>
<Items>
<x:Grid ID="Grid1" Title="表格" PageSize="4" ShowBorder="true" ShowHeader="False"
runat="server" EnableCheckBoxSelect="True" DataKeyNames="Id,Name">
<Columns>
<x:RowNumberField />
<x:BoundField Width="100px" DataField="Name" DataFormatString="{0}" HeaderText="姓名" />
<x:TemplateField Width="80px" HeaderText="性别">
<ItemTemplate>
<%-- Container.DataItem 的类型是 System.Data.DataRowView 或者用户自定义类型 --%>
<asp:Label ID="Label4" runat="server" Text='<%# GetGender(Eval("Gender")) %>'></asp:Label>
</ItemTemplate>
</x:TemplateField>
<x:BoundField Width="80px" DataField="EntranceYear" HeaderText="入学年份" />
<x:CheckBoxField Width="80px" RenderAsStaticField="true" DataField="AtSchool" HeaderText="是否在校" />
<x:HyperLinkField HeaderText="所学专业" DataToolTipField="Major" DataTextField="Major"
DataTextFormatString="{0}" DataNavigateUrlFields="Major" DataNavigateUrlFormatString="http://gsa.ustc.edu.cn/search?q={0}"
DataNavigateUrlFieldsEncode="true" Target="_blank" ExpandUnusedSpace="True" />
<x:ImageField Width="80px" DataImageUrlField="Group" DataImageUrlFormatString="~/images/16/{0}.png"
HeaderText="分组"></x:ImageField>
</Columns>
</x:Grid>
</Items>
</x:Panel>
</form>
</body>
</html>