Menu not showing tooltip in C# wpf
- by swapnil
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.