Hi Peter,
Apologize for the delay,
You can achieve your requirement by using GridStyleInfo.Tooltip instead of GridStyleInfo.CellValue to display a tooltip like as in the below code snippet,
Code Snippet:
<DataTemplate x:Key="templateTooltip"> <Border Background="LightGreen" BorderBrush="Black" BorderThickness="1" CornerRadius="2"> <StackPanel Margin="5" VerticalAlignment="Center" Orientation="Horizontal"> <Image Width="30" Height="30" VerticalAlignment="Center" Source="Images\phone.png" /> <TextBlock VerticalAlignment="Center" Text="{Binding Tooltip}" /> </StackPanel> </Border> </DataTemplate>
|
please refer the attached sample,
Please let us know if you have any queries,
Regards,
Jayapradha