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

31 lines
1.4 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_form.aspx.cs" Inherits="FineUI.Examples.layout.vbox_form" %>
<!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:Form ID="Panel1" Title="表单Layout=VBox" runat="server" Width="600px" Height="400px"
LabelAlign="Right" LabelWidth="80px"
BodyPadding="5" ShowBorder="true" ShowHeader="true" Layout="VBox">
<Items>
<f:TextBox ID="TextBox1" runat="server" Label="姓名" ShowRedStar="true" Required="true"></f:TextBox>
<f:DropDownList ID="DropDownList1" Label="性别" ShowRedStar="true" Required="true" runat="server">
<f:ListItem Text="男" Value="男" Selected="true" />
<f:ListItem Text="女" Value="女" />
</f:DropDownList>
<f:TextArea ID="TextArea1" CssStyle="margin-bottom:0;" Label="个人简介" runat="server" BoxFlex="1"></f:TextArea>
</Items>
</f:Form>
<br />
<br />
注:设置[个人简介]的 CssStyle="margin-bottom:0;",来去除底部外边距。
</form>
</body>
</html>