Menu not showing tooltip in C# wpf
Posted
by
swapnil
on Stack Overflow
See other posts from Stack Overflow
or by swapnil
Published on 2014-05-31T09:21:28Z
Indexed on
2014/05/31
9:25 UTC
Read the original article
Hit count: 322
i have this code
<MenuItem Header="{localization:Translate NewChart}" ToolTip="Ctrl+h"
Command="{Binding AddChartCommand}">
<MenuItem.Background>
<RadialGradientBrush RadiusX="0.768" RadiusY="0.783">
<GradientStop Color="#FF2b2b2b" Offset="1"/>
<GradientStop Color="#FF515151" Offset="0.388"/>
</RadialGradientBrush>
</MenuItem.Background>
</MenuItem>
I don't understand why i can't see the toottip when i take mouse over the menu item.
© Stack Overflow or respective owner