I have a Grid control that has a column populated with a "thumbnail-sized" image:
<GridColumn Field="@nameof(QuoteSheetDetailFactory.InlineImageUrl)" IsFrozen="true" HeaderText="Image" TextAlign="TextAlign.Center" Width="140" MaxWidth="140" AllowEditing="false" AllowFiltering="false" AllowSorting="false">
<Template>
@{
var row = (context as QuoteSheetDetailFactory);
<div class="image">
<img src="@($"{row.InlineImageUrl}?{SasToken}")" @onclick="(() => ViewImages(row))" />
</div>
}
</Template>
</GridColumn>
All good there. What I'd like to do is have a larger version of the image made available when the user hovers over one of the images. Is this possible?