FineUI 官方论坛

标题: form的FormRow中按钮背景色的问题 [打印本页]

作者: maocanmao    时间: 2014-5-9 17:37
标题: form的FormRow中按钮背景色的问题
本帖最后由 maocanmao 于 2014-5-9 17:39 编辑

[attach]5232[/attach]
window中是一个form, 如何去掉按钮底下的白色呢
  1.   <style>
  2.      
  3.         .mypanel {
  4.             text-align: center;
  5.             padding-top: 10px;
  6.             margin-top: 10px;
  7.             border-top: solid 1px #ccc;
  8.         }
  9.             .mypanel .mybutton {
  10.                 display: inline-block;
  11.                 *display: inline;
  12.                 margin-right: 30px;
  13.             }
  14.     </style>



  15. <f:Window ID="Window_add" Width="650px" Height="300px" Title=" Add" Hidden="true"
  16.         EnableMaximize="true" EnableCollapse="true" runat="server" EnableResize="true"
  17.         IsModal="false" CloseAction="HidePostBack" OnClose="Window2_Close" Layout="Fit"
  18.         WindowPosition="GoldenSection" >
  19.         <Items>
  20.             <f:Form Width="600px" LabelWidth="100px" BodyPadding="5px" EnableFrame="true" EnableCollapse="true"
  21.                 ID="Form_add" runat="server" ShowHeader="false" ShowBorder="true" >
  22.                 <Rows>
  23.                     <f:FormRow>
  24.                         <Items>
  25.                             <f:TextBox ID="IPName" Label="IPName" Required="true" runat="server" ShowRedStar="True" />
  26.                         </Items>
  27.                     </f:FormRow>
  28.                     <f:FormRow>
  29.                         <Items>
  30.                             <f:TextBox ID="Revision" Label="Revision" Required="true" runat="server" ShowRedStar="True" />
  31.                         </Items>
  32.                     </f:FormRow>
  33.                     <f:FormRow>
  34.                         <Items>
  35.                             <f:DropDownList ID="Chiplet" Label="Chiplet" Required="true" runat="server" ShowRedStar="True">
  36.                                 <f:ListItem Text="Chiplet1" Value="0"></f:ListItem>
  37.                                 <f:ListItem Text="Chiplet2" Value="1"></f:ListItem>
  38.                                 <f:ListItem Text="Chiplet3" Value="2"></f:ListItem>
  39.                             </f:DropDownList>
  40.                         </Items>
  41.                     </f:FormRow>
  42.                     <f:FormRow>
  43.                         <Items>
  44.                             <f:TextArea ID="Description" runat="server" Label="Description" ShowRedStar="True"
  45.                                 Required="True">
  46.                             </f:TextArea>
  47.                         </Items>
  48.                     </f:FormRow>
  49.                     <f:FormRow >
  50.                         <Items>
  51.                         <f:Panel ID="Panel1" runat="server" ShowBorder="false"
  52.                             CssClass="mypanel" ShowHeader="false">
  53.                             <Items>
  54.                             <f:Button ID="add" Text="Add" Icon="Add" runat="server" CssClass="mybutton" ValidateForms="Form_add"
  55.                                 Size="Large">
  56.                             </f:Button>
  57.                             <f:Button ID="Reset" EnablePostBack="false" Text="reset" Icon="Reload"  CssClass="mybutton" Size="Large"
  58.                                 runat="server">
  59.                             </f:Button>
  60.                             </Items>
  61.                             </f:Panel>
  62.                         </Items>
  63.                     </f:FormRow>
  64.                 </Rows>
  65.             </f:Form>
  66.         </Items>
  67.     </f:Window>
复制代码






作者: 幻之达    时间: 2014-5-9 17:52
给form加上背景属性试下
作者: maocanmao    时间: 2014-5-9 18:10
幻之达 发表于 2014-5-9 17:52
给form加上背景属性试下

form的背景色如何设置?没看到background的相关属性啊

作者: maocanmao    时间: 2014-5-12 16:05
求救~~~~~~~~~




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