I'm trying to put a shortcut on my system menu in WPF. In Windows form, just change the text property by placing the "&" before, but in WPF does not use "text" but "content"
Does anyone help me?
<Menu HorizontalAlignment="Left" Height="31" VerticalAlignment="Top" Width="80">
<MenuItem Header="Cadastro" Height="31" Width="70" Name="ItemCadastro">
<MenuItem Header="Empresa" HorizontalAlignment="Left" Width="150" Click="MenuItem_Click"/>
</MenuItem>
</Menu>