namespace Terminal.Gui;
/// Specifies how a shows selection state.
[Flags]
public enum MenuItemCheckStyle
{
/// The menu item will be shown normally, with no check indicator. The default.
NoCheck = 0b_0000_0000,
/// The menu item will indicate checked/un-checked state (see ).
Checked = 0b_0000_0001,
/// The menu item is part of a menu radio group (see ) and will indicate selected state.
Radio = 0b_0000_0010
}