-
How can I show a tooltip for a datagrid cell or row? |
Beta Was this translation helpful? Give feedback.
Answered by
wgraaf
May 12, 2023
Replies: 2 comments 1 reply
-
This style should work <Style Selector="DataGrid#MyDataGrid DataGridRow">
<Setter Property="Tooltip.Tip" Value="{Binding TooltipText}" />
</Style> Alternatively, you can use DataGrid.LoadedRow event and access Row control from the arguments. |
Beta Was this translation helpful? Give feedback.
0 replies
-
did the trick. thnks! |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
wgraaf
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
did the trick. thnks!