画像でわかるように、GridViewセル内にgridviewがあります。私は、単語が持っている単語の下と次の単語を超えている境界線であると私が信じている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";
}
しかし、それは機能しません。ヘルプはありますか?