-
Hi guys, https://drive.google.com/file/d/1aIkUzcssVkjd5PMysFrCwobzqGCzcvNu/view?usp=sharing Thank you very much. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
If you just want the tooltip to be the same as the content, in your <Setter Property="ToolTip" Value="{Binding}" /> If you want it to be different, you would need to be either adding your own class to the |
Beta Was this translation helpful? Give feedback.
-
@miloush Dear jon can I change the font family of this tooltip?
|
Beta Was this translation helpful? Give feedback.
If you just want the tooltip to be the same as the content, in your
ItemContainerStyle
you can doIf you want it to be different, you would need to be either adding your own class to the
ListBox.Items
that can hold both content and tooltip and databind to these properties, or, you would need to be explicitly addingListBoxItem
and use itsContent
andToolTip
properties.