vb.net datagridview 奇数行偶数行显示不同的背景色

‘设置表格背景色  
DataGridView1.RowsDefaultCellStyle.BackColor = Color.Yellow    
’设置交替行的背景色  
DataGridView1.AlternatingRowsDefaultCellStyle.BackColor = Color.Red  

你可能感兴趣的:(VB.NET)