Checked/unchecked bar items in Windows Forms PopupMenu

4 Feb 20251 minute to read

This support will help users to easily acknowledge the selected bar item by using the check mark. The Checked property indicates whether a check mark should appear before the text of the bar item. On runtime, user can toggle the state manually through the Click event of the bar item.

NOTE
In this illustration we have used ParentBarItem. Similarly, we have to set for BarItem, DropDownBarItem,ComboBoxBarItem, ListBarItem, StaticBarItem and TextBoxBarItem.

The below code snippet will explain the checked state of the bar item.

this.parentBarItem2.Checked = true;
Me.parentBarItem2.Checked = True

Checked/unchecked menu items