正如您在图像上看到的那样,我在 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";
}
但它不起作用。有什么帮助吗?