2014-03-25 68 views

回答

0

DataGridView的Cell_Painting事件可以用來實現上述功能。您需要一個DataGridView和ImageList,其中要附加Image。以下簡單的代碼在事件將能夠實現這一點:

private void dataGridView1_CellPainting(object sender, DataGridViewCellPaintingEventArgs e) 
 { 
  
    if (e.RowIndex >= 0 && e.ColumnIndex == 0 && Convert.ToInt32(e.Value.ToString()) > 0) 
    { 
        e.PaintBackground(e.ClipBounds, false); 
       dataGridView1[e.ColumnIndex, e.RowIndex].ToolTipText = e.Value.ToString(); 
       PointF p = e.CellBounds.Location; 
       p.X += imageList1.ImageSize.Width; 
  
      e.Graphics.DrawImage(imageList1.Images[0], e.CellBounds.X, e.CellBounds.Y, 16, 16); 
       e.Graphics.DrawString(e.Value.ToString(), e.CellStyle.Font, Brushes.Black, p); 
       e.Handled = true; 
    } 
  
} 
相關問題