I have one ToggleButton
with ToolTip
, content of ToolTip
is bind with Text
property. Now I need to style my ToolTip
within ToggleButton
. I know its not allow me apply style within ToggleButton
for ToolTip
and I don't know how to do it.
Here is what my code looks like:
<ToggleButton
x:Name="btn"
Margin="10,0,0,20"
Style="{StaticResource bubbleStyle}"
ToolTip="{Binding ElementName=tbText, Path=Text, Mode=TwoWay}" />