使用C#在Excel中更改MS Excel行颜色

时间:2015-07-22 10:26:05

标签: c# excel-interop

我目前正在创建一个小程序,允许用户将数据输入到Windows窗体中。将此数据输入表单后,将使用OleDb将其添加到Excel文档中。

我对上面的部分没有任何问题,我可以输入数据,但是当我尝试更改Excel行的颜色时出现了问题。

如果当前行没有填充,我希望将行的颜色更改为红色。

我目前使用的代码:

        Excel.Application application = new Excel.Application();
        Excel.Workbook workbook = application.Workbooks.Open(@"C:\Users\jhughes\Desktop\ScreenUpdate.xls");
        Excel.Worksheet worksheet = (Excel.Worksheet)workbook.Sheets["DailyWork"];
        Excel.Range usedRange = worksheet.UsedRange;
        Excel.Range rows = usedRange.Rows;
        try
        {
            foreach (Excel.Range row in rows)
            {
              if (row.Cells.EntireRow.Interior.ColorIndex = 0)
              {
                 row.Interior.Color = System.Drawing.Color.Red;
              }
            }
        }
        catch(Exception ex)
        {
            MessageBox.Show(ex.ToString());
        }

我在“If(row.Cells.EntireRow ....)”行中收到错误“无法将int类型隐式转换为bool”

3 个答案:

答案 0 :(得分:4)

您正在尝试将ColorIndex设置为0,而不是将其与0进行比较。比较时使用==

foreach (Excel.Range row in rows)
{
    if (row.Cells.EntireRow.Interior.ColorIndex == 0) // changed = to ==
    {
        row.Interior.Color = System.Drawing.Color.Red;
    }
}

答案 1 :(得分:3)

您需要使用== operator代替= operator==运算符用于相等,但=运算符用于赋值。

if (row.Cells.EntireRow.Interior.ColorIndex == 0)

=运算符只是将右操作数赋给左变量/ property / indexer并返回值作为结果。这就是你写作时的原因

if (row.Cells.EntireRow.Interior.ColorIndex = 0)

等于

if(0)

if statement期望boolean expression后无法编译。

答案 2 :(得分:1)

我认为您没有将保存添加到工作簿中并在条件有限时更改。不知何故,默认的colorindex为-4142。现在测试能够改变颜色变化

Excel.Application application = new Excel.Application();
                Excel.Workbook workbook = application.Workbooks.Open(@"C:\Users\MyPath\Desktop\ColorBook.xls");
                Excel.Worksheet worksheet = (Excel.Worksheet)workbook.Sheets["DailyWork"];
                Excel.Range usedRange = worksheet.UsedRange;
                Excel.Range rows = usedRange.Rows;
                try
                {
                    foreach (Excel.Range row in rows)
                    {
                        if (row.Cells.EntireRow.Interior.ColorIndex == -4142)
                        {
                            row.Interior.Color = System.Drawing.Color.Red;
                        }
                    }
                    workbook.Save();
                    workbook.Close();
                }
                catch (Exception ex)
                {
                    MessageBox.Show(ex.ToString());
                }