Reputation: 59
In C# windows form application, I want to add item to context menu so that I can check or uncheck that item in context menu. Is it possible?
Upvotes: 3
Views: 742
Reputation: 7163
It certainly is. Just change the CheckOnClick
property of your ToolStripMenuItem
to true
.
Upvotes: 1