Hi again!
I have the following code that successfully displays an image in its column based on its bound DataProperty:
private void dgvTasks_CellFormatting( object sender, DataGridViewCellFormattingEventArgs e ) {
if (dgvTasks.Columns[e.ColumnIndex] is DataGridViewImageColumn && e.ColumnIndex == 1) {
e.Value = ( (bool)e.Value == true ) ? Properties.Resources.ok : Properties.Resources.clock;
}
}
but I would like to know how its possible to show a tooltip when a user hovers over the image?