如何设置GridView显示表格线

如何设置GridView显示表格线,第1张

实际上,该网格线是通过设置GridView各子项的间隔,并分别设置GridView背景色与子项背景色实现的。

1.设置GridView背景色,设置水平间方向间隔属性值android:horizontalSpacing和竖直方向间隔属性值android:verticalSpacing

2.设置GridView子项背景色

        gridview是 asp.net2.0的新控件,在vs2005中可以选取自动套用格式来确定他的风格,但是发现他的girdline(网格线)属性,只能设置在什么方向存在(没有,横,纵,横纵都有),而不能设置格式,比如我想设置网格线为虚线,但是无法设置。

这个时候,进入columns集合,如果内容已经绑定,在其中已经出现相应的列,如该例子id,content然后设置它们的itemstyle中的cssclass属性为class1,其中class1件下面的文件,其中gridview1的数据源只是两个字段,id和content两个字段

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >

<head runat="server">

<style>

.class1

{

    border-top-style: none

    border-bottom: red 1px dashed

}

</style>

    <title>gridview风格</title>

</head>

<body>

    <form id="form1" runat="server">

    <div>

        &nbsp

        <asp:GridView ID="GridView1" runat="server" Height="164px" Width="575px" AutoGenerateColumns="False" DataKeyNames="id" DataSourceID="AccessDataSource1" GridLines="None">

            <Columns>

                <asp:BoundField DataField="id" InsertVisible="False" ReadOnly="True"

                    SortExpression="id">

                    <ItemStyle CssClass="class1" />

                </asp:BoundField>

                <asp:BoundField DataField="content" SortExpression="content">

                    <ItemStyle CssClass="class1" />

                </asp:BoundField>

            </Columns>

        </asp:GridView>

        <asp:AccessDataSource ID="AccessDataSource1" runat="server" DataFile="~/Data/style.mdb"

            SelectCommand="SELECT id,content FROM [test]"></asp:AccessDataSource>

    </div>

    </form>

</body>

</html>

思路:修改第五行的样式,使第五行的下边框颜色为灰色,然后距离最下留15px的空白;修改第六行的样式,然后距离最上留15px的空白。这样看上去就像是每隔五行有一条空白数据作为分隔。

/* --- 数据行绑定 --- */

protected void XXX_RowDataBound(object sender, GridViewRowEventArgs e)

{

if (e.Row.RowType == DataControlRowType.DataRow)

{

/* --- 数据行为第五(倍数)或者第六(倍数)的时候 --- */

if (e.Row.RowIndex != 0 &&(e.Row.RowIndex % 4 == 0 || e.Row.RowIndex % 5 == 0))

{

foreach (TableCell cell in e.Row.Cells)

{

/* --- 添加样式 --- */

cell.Attributes.Add("style", e.Row.RowIndex % 4 == 0 ? "padding-bottom:15pxborder-bottom:solid 1px Gray" : "padding-top:15px")

}

}

}

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11719672.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-18
下一篇 2023-05-18

发表评论

登录后才能评论

评论列表(0条)

保存