1

正如您在图像上看到的那样,我在 GridView 单元格中有一个 gridview。我正在尝试删除我认为是单词 has 和 next 单词下方的边界的 2 条水平线。

在此处输入图像描述

 foreach (TableCell tc in e.Row.Cells)
        {
            tc.Attributes["style"] = "border-bottom-style:none";
            tc.Attributes["style"] = "border-width:0px";
            tc.Attributes["style"] = "border-top-style:none";
        }

但它不起作用。有什么帮助吗?

4

1 回答 1

12

将以下属性添加到您的 GridView

GridLines="None"

这应该删除所有边框。

于 2012-12-04T21:16:44.450 回答