Skip to content

Commit

Permalink
Merge pull request #1953 from giduac/1908-V100-KDGV-Column-indicator-…
Browse files Browse the repository at this point in the history
…image-class

1908-V100-KDGV-Column-indicator-image-class
  • Loading branch information
PWagner1 authored Dec 16, 2024
2 parents 4c74b90 + 9b8035e commit 646d060
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,15 @@ public KryptonDataGridView? DataGridView
}
}

/// <summary>
/// Cell indicator image.
/// </summary>
public virtual Image? Image
{
get
{
_rwls.EnterReadLock();
Image? image = _image;
var image = _image?.Clone() as Image;
_rwls.ExitReadLock();

return image;
Expand Down

0 comments on commit 646d060

Please sign in to comment.