I am designing a logging feature in which User can select which event he wants to log.
On clicking button, I am showing such type of menu:

User can select multiple Events so I need to show “Check Mark” infront of the selected option when user clicks on it.
I am unable to find any options like “Checked” or “CheckOnClick” as mentioned in this question.
I tried with ContextMenu and ContextMenuStrips but couldn’t achieve Checkboxes.
Any Suggestions??
Don’t see any of your code so I don’t know how you create this menu. But in the most general terms, here is how you access the
Checkedproperty.You can assign them as either true or false. If you have named your
ToolStripItems, then you can access them directly rather than going to theItemsarray.As you can see, I am using a
ContextMenuStrip.