musa
musa

Reputation: 59

Context menu

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

Answers (2)

RvdK
RvdK

Reputation: 19800

yes its possible: MenuItem and then the Checked property

Upvotes: 1

Dan Walker
Dan Walker

Reputation: 7163

It certainly is. Just change the CheckOnClick property of your ToolStripMenuItem to true.

Upvotes: 1

Related Questions