dataGridView 設定某一行的顏色

世紀緣發表於2016-03-19
private   void   dataGridView1_RowPostPaint(object   sender,   DataGridViewRowPostPaintEventArgs   e)   
{   
   if(e.RowIndex   %   3   ==   2)   
   dataGridView1.Rows[e.RowIndex].DefaultCellStyle.BackColor = Color.Red;   
 }


相關文章