アイテムの数量に基づいて異なる色の行を表示するデータグリッドを取得しようとしています。
私が抱えている問題は、ifステートメントです。
if (RowType == < 5)
が無効な場合、値に対してチェックされる行タイプを解析するにはどうすればよいですか?
foreach (DataGridViewRow row in dtaPart.Rows)
{
//Cell three is where quantity is
string RowType = row.Cells[3].Value.ToString();
if (RowType == //> 5)
{
row.DefaultCellStyle.BackColor = Color.White;
row.DefaultCellStyle.ForeColor = Color.Black;
}
else if (RowType == //< 5)
{
row.DefaultCellStyle.BackColor = Color.Orange;
row.DefaultCellStyle.ForeColor = Color.Black;
}
else if (RowType == //< 1)
{
row.DefaultCellStyle.BackColor = Color.Red;
row.DefaultCellStyle.ForeColor = Color.Black;
}
}