WPF seems to be lacking a RadioMenuItem
class or similar functionality. In Windows.Forms
, menu items had a RadioChecked
property, but WPF menu items only have IsChecked
. I can put actual RadioButton
s in a MenuItem
, but this feels weird and looks awkward.
How can I create a group of menu items that function like radio buttons in a WPF menu? For reference, see the "Zoom" menu in IE8.
IsChecked
property (which draws a check mark) rather than aRadioChecked
-type property (which would draw a circle). – Selfevident