我正在使用CellFormatting事件根据我的DataGridView中的其他结果显示图像。
这看起来像
private void dataGridView_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
{
// If in correct column and row, etc...
Bitmap bitmap = CreateBitmap();
e.Value = bitmap;
e.FormattingApplied = true;
}
现在,我如何处理我可靠创建的这些位图?