我有以下代码成功地显示在基于它的绑定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;
}
}
但我想知道如何它可以显示工具提示当用户将鼠标悬停在图片?