gpt4 book ai didi

c# - 如何更改datagridview中的行颜色

转载 作者:太空宇宙 更新时间:2023-11-03 16:55:31 25 4
gpt4 key购买 nike

我想更改我的数据 GridView 中特定行的颜色。当 columncell 7 的值小于 columncell 10 中的值时,该行应更改为红色。关于如何完成此操作的任何建议?

最佳答案

您需要遍历 datagridview 中的行,然后比较每行中第 7 列和第 10 列的值。

试试这个:

foreach (DataGridViewRow row in vendorsDataGridView.Rows) 
if (Convert.ToInt32(row.Cells[7].Value) < Convert.ToInt32(row.Cells[10].Value))
{
row.DefaultCellStyle.BackColor = Color.Red;
}

关于c# - 如何更改datagridview中的行颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2189517/

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