FineUI 官方论坛

标题: FileUpload和Button处于Form中出现不对齐的问题 [打印本页]

作者: 唐铁明    时间: 2012-12-11 05:17
标题: FileUpload和Button处于Form中出现不对齐的问题
<xageManager ID="ageManager1" runat="server" />
    <xanel ID="anel1" runat="server" BodyPadding="0px" EnableBackgroundColor="true"
        ShowBorder="true" ShowHeader="true" Title="anel">
        <Items>
            <x:Form ID="Form2" runat="server" BodyPadding="0px 0px 2px 0px" EnableBackgroundColor="true" LabelWidth="50px"
                Title="Form">
                <Rows>
                    <x:FormRow ID="FormRow1" runat="server">
                    <Items>
                     <x:FileUpload ID="FileUpload4" runat="server" Label="上传">
                    </x:FileUpload>
                    <x:Button ID="Button4" runat="server" Text="上传">
                    </x:Button>
                  
              
                        </Items>
                    </x:FormRow>
                    <x:FormRow ID="FormRow2" runat="server" >
                    <Items>
                    <x:FileUpload ID="FileUpload1" runat="server" Label="上传" >
                    </x:FileUpload>
                    <x:Button ID="Button1" runat="server" Text="上传"  >
                        </x:Button>
              
                        </Items>
                    </x:FormRow>
                    <x:FormRow ID="FormRow3" runat="server">
                    <Items>
                    <x:FileUpload ID="FileUpload2" runat="server" Label="上传">
                    </x:FileUpload>
                    <x:Button ID="Button2" runat="server" Text="上传">
                        </x:Button>
              
                        </Items>
                    </x:FormRow>
                    <x:FormRow ID="FormRow4" runat="server">
                    <Items>
                    <x:FileUpload ID="FileUpload3" runat="server" Label="上传" >
                    </x:FileUpload>
                    <x:Button ID="Button3" runat="server" Text="上传">
                        </x:Button>
                        </Items>
                    </x:FormRow>
                </Rows>
            </x:Form>
        </Items>
    </xanel>

作者: sanshi    时间: 2012-12-11 05:47
其实很简单,为按钮加个样式就行了,我写了一个示例:
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="button_in_form.aspx.cs"
  2.     Inherits="FineUI.Examples.other.button_in_form" %>

  3. <!DOCTYPE html>
  4. <html>
  5. <head runat="server">
  6.     <title></title>
  7.     <link href="../css/main.css" rel="stylesheet" type="text/css" />
  8.     <style>
  9.         .btn-in-form
  10.         {
  11.             margin-bottom: 4px;
  12.         }
  13.     </style>
  14. </head>
  15. <body>
  16.     <form id="form1" runat="server">
  17.     <x:PageManager ID="PageManager1" runat="server" />
  18.     <x:Form ID="SimpleForm1" BodyPadding="5px" Width="550px" LabelAlign="Left" LabelWidth="80px" EnableBackgroundColor="true"
  19.         Title="表单" runat="server">
  20.         <Rows>
  21.             <x:FormRow ID="FormRow5" runat="server">
  22.                 <Items>
  23.                     <x:TextBox ID="TextBox1" runat="server" Label="文本一">
  24.                     </x:TextBox>
  25.                     <x:Button ID="Button4" CssClass="btn-in-form" runat="server" Text="按钮一">
  26.                     </x:Button>
  27.                 </Items>
  28.             </x:FormRow>
  29.             <x:FormRow ID="FormRow6" runat="server">
  30.                 <Items>
  31.                     <x:TextBox ID="TextBox2" runat="server" Label="文本二">
  32.                     </x:TextBox>
  33.                     <x:Button ID="Button3" CssClass="btn-in-form" runat="server" Text="按钮二">
  34.                     </x:Button>
  35.                 </Items>
  36.             </x:FormRow>
  37.             <x:FormRow ID="FormRow7" runat="server">
  38.                 <Items>
  39.                     <x:TextBox ID="TextBox3" runat="server" Label="文本三">
  40.                     </x:TextBox>
  41.                     <x:Button ID="Button1" CssClass="btn-in-form" runat="server" Text="按钮三">
  42.                     </x:Button>
  43.                 </Items>
  44.             </x:FormRow>
  45.             <x:FormRow ID="FormRow8" runat="server">
  46.                 <Items>
  47.                     <x:TextBox ID="TextBox4" runat="server" Label="文本四">
  48.                     </x:TextBox>
  49.                     <x:Button ID="Button2" CssClass="btn-in-form" runat="server" Text="按钮四">
  50.                     </x:Button>
  51.                 </Items>
  52.             </x:FormRow>
  53.         </Rows>
  54.     </x:Form>
  55.     </form>
  56. </body>
  57. </html>
复制代码

作者: 唐铁明    时间: 2012-12-11 06:01
试了一下,解决了,谢谢了
作者: sjxwb    时间: 2012-12-11 06:20
CssClass="btn-in-form" 管用。




欢迎光临 FineUI 官方论坛 (https://fineui.com/BBS/) Powered by Discuz! X3.4