gpt4 book ai didi

c# - 在 C# 中删除 GridViewRow 的顶部边框

转载 作者:行者123 更新时间:2023-11-28 02:10:48 25 4
gpt4 key购买 nike

我在 gridview 的 rowcreated 事件中添加行控件,需要删除顶部边框线。

GridViewRow HeaderGridRow = new GridViewRow(0, 0, DataControlRowType.Header, DataControlRowState.Insert);
TableCell HeaderCell = new TableCell();
HeaderCell.Text = strTotalRecords;
HeaderCell.HorizontalAlign = HorizontalAlign.Left;
HeaderCell.BorderStyle = BorderStyle.None;
HeaderGridRow.Cells.Add(HeaderCell);
HeaderGridRow.BackColor = Color.White;
gvGrid.Controls[0].Controls.AddAt(totalRowIndex, HeaderGridRow);

我正在使用下面的代码删除边框,但它不起作用。

HeaderCell.Attributes.CssStyle.Add("border-top", "none");
HeaderCell.Attributes.CssStyle.Add("border-top-style", "none");

HeaderGridRow.Attributes.CssStyle.Add("border-top", "none");
HeaderGridRow.Attributes.CssStyle.Add("border-top-style", "none");

请建议我如何处理。

最佳答案

向您的网格添加一个 css 类,并向该 css 类添加样式,如下所示。

.gridview
{
border-top:none !important;
}

关于c# - 在 C# 中删除 GridViewRow 的顶部边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48764366/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com