如何使用Linq迭代网格行?
我想根据列值更改行颜色。
答案 0 :(得分:-1)
请使用以下代码
GridView.Rows.Cast<DataGridViewRow>().Where(r => (r.Cells[0].Value != null && r.Cells[0].Value.ToString().ToLower().Equals("nonveg"))).ToList().ForEach(c => c.DefaultCellStyle.ForeColor = System.Drawing.Color.Red);