1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| private void dgCustomer_CellPainting(object sender, DataGridViewCellPaintingEventArgs e)
{
if ((e.ColumnIndex == dgCustomer.DgGrid.Columns["colImgView"].Index && e.RowIndex >= 0))
{
e.Paint(e.CellBounds, DataGridViewPaintParts.All);
DataGridViewButtonCell bc = dgCustomer.DgGrid[0, e.RowIndex] as DataGridViewButtonCell;
e.Graphics.DrawImage(Properties.Resources.find_16, e.CellBounds.Left + 3, e.CellBounds.Top + 3);
e.Handled = true;
}
else if ((e.ColumnIndex == dgCustomer.DgGrid.Columns["colImgEdit"].Index && e.RowIndex >= 0))
{
e.Paint(e.CellBounds, DataGridViewPaintParts.All);
DataGridViewButtonCell bc = dgCustomer.DgGrid[0, e.RowIndex] as DataGridViewButtonCell;
e.Graphics.DrawImage(Properties.Resources.edit_16, e.CellBounds.Left + 3, e.CellBounds.Top + 3);
e.Handled = true;
}
} |
Partager