码迷,mamicode.com
首页 > 其他好文 > 详细

C#小常识,持续更新..

时间:2014-07-13 11:56:31      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   div   new   re   

1.cs部分添加隐藏样式IntegratedEquipmentblock.Style.Add("display", "none");

 

2.gridview添加奇偶行样式
protected void gvIntegratedEquipmentList_RowDataBound(object sender, GridViewRowEventArgs e)
        {

            //添加样式-----------begin
            switch (e.Row.RowType)
            {
                case DataControlRowType.Header:
                    e.Row.CssClass = "table01_th";
                    break;
                case DataControlRowType.DataRow:
                    if (e.Row.RowIndex > -1)
                    {
                        // 奇数行
                        if (e.Row.RowIndex % 2 == 0)
                        {
                            e.Row.CssClass = "table01_singlar";
                        }
                        else
                        {
                            e.Row.CssClass = "table01_double";
                        }
                    }
                    break;
            }
            //------------------end
        }

 

3.添加单元格背景色
e.Row.Cells[0].BackColor = (System.Drawing.Color)new WebColorConverter().ConvertFromString("#d0cfce");

 

C#小常识,持续更新..,布布扣,bubuko.com

C#小常识,持续更新..

标签:style   blog   color   div   new   re   

原文地址:http://www.cnblogs.com/PeaCode/p/3837672.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!