我创建了这样的行和单元格=
行 Row1 = new Row() { RowIndex = 1 };
Row1.AppendChild(new Cell()
{
CellReference = "A1",
DataType = CellValues.String,
CellValue = new CellValue("Color this")
});
谁能告诉我如何在 C# 中使用 openXml 为这个特定的单元格着色?我不想给所有的单元格上色,只给这个特定的单元格上色。