gpt4 book ai didi

c# - 如何根据单元格值更改行背景颜色

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

我试过这段代码,但它对我不起作用。

for (int i = 0; i < GerezCmdsGridView.Rows.Count; i++)
{
if (Convert.ToDouble(GerezCmdsGridView.Rows[i].Cells[7].Value) == 0 || GerezCmdsGridView.Rows[i].Cells[7].Value == DBNull.Value)
{
GerezCmdsGridView.Rows[i].DefaultCellStyle.BackColor = Color.Red;
}
}

enter image description here

最佳答案

我觉得条件顺序有问题。您首先尝试将值转换为 double 值。 然后您检查 DBNull.Value

所以你应该调换顺序:

if (GerezCmdsGridView.Rows[i].Cells[7].Value == DBNull.Value || 
Convert.ToDouble(GerezCmdsGridView.Rows[i].Cells[7].Value) == 0)

如果您首先尝试转换 dbnull (Convert.ToDouble(DBNull.Value)),则会引发异常:

System.InvalidCastException: Object cannot be cast from DBNull to other types.

关于c# - 如何根据单元格值更改行背景颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36825100/

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