Closed wyrdathru closed 10 years ago
MetroRichTextBox styles its context menu with TextBoxMetroContextMenu, where the items are manually set:
<ContextMenu x:Key="TextBoxMetroContextMenu" Style="{StaticResource MetroContextMenu}"> <MenuItem Command="ApplicationCommands.Cut" Style="{DynamicResource MetroMenuItem}" /> <MenuItem Command="ApplicationCommands.Copy" Style="{DynamicResource MetroMenuItem}" /> <MenuItem Command="ApplicationCommands.Paste" Style="{DynamicResource MetroMenuItem}" /> </ContextMenu>
Due to this, spell-check is ineffective when enabled as the list of proposed corrections cannot be seen when right-clicking the incorrectly typed word.
vs.
Can anyone see a way to easily merge the menu items from spell-check into this list?
Found a link http://stackoverflow.com/questions/210634/add-menu-item-to-default-context-menu Didn't test myself.
fixed with #1056
MetroRichTextBox styles its context menu with TextBoxMetroContextMenu, where the items are manually set:
Due to this, spell-check is ineffective when enabled as the list of proposed corrections cannot be seen when right-clicking the incorrectly typed word.
vs.
Can anyone see a way to easily merge the menu items from spell-check into this list?