如何更改一个有需要的行的bordertyle?
dgv_All.DataSource = dt2;
之后我想改变行的bordertyle,例如,编号12.
我尝试了一些变体,但它们不起作用。
答案 0 :(得分:1)
答案 1 :(得分:0)
DataGridView.BorderStyle属性BorderStyles
dgv_All.BorderStyle = BorderStyle.FixedSingle;;
一行
foreach (DataGridViewRow row in dgv_All.Rows)
{
string RowType = row.Cells[0].Value.ToString();
if (RowType == "Type A")
{
row.DefaultCellStyle.BackColor = Color.Red;
row.DefaultCellStyle.ForeColor = Color.White;
}
else if (RowType == "Type B")
{
row.DefaultCellStyle.BackColor = Color.Yellow;
row.DefaultCellStyle.ForeColor = Color.Black;
}
}