How can I get this simple example to work ?
The contextMenu must stay open after CheckBox IsChecked state changes.
<TextBox Width="250">
<TextBox.ContextMenu>
<ribbon:ContextMenu StaysOpen="True">
<ribbon:Menu>
<ribbon:CheckBox Label="Option1"
StaysOpenOnClick="True"/>
<ribbon:CheckBox Label="Option2"
StaysOpenOnClick="True"/>
</ribbon:Menu>
</ribbon:ContextMenu>
</TextBox.ContextMenu>
</TextBox>