int highest = 0;
for (int row = 0; row < dgvCalories.Rows.Count - 1; row++)
{
for (int col = 0; col < dgvCalories.ColumnCount; col++)
{
if (calories[row, col] > highest)
highest = calories[row, col];
}
}
データグリッド ビューでこの最大値を色で強調表示するために必要なコードを知りたい