How do I manage the checkonClick/uncheck on a menu item
-
I have a View menu item that offiers Large Icon, Details..... views. I would like to have the menu item have a checked sign when selected by a user and then remove the check sign when user selects a different view option. Thank you.
Palestine
-
I have a View menu item that offiers Large Icon, Details..... views. I would like to have the menu item have a checked sign when selected by a user and then remove the check sign when user selects a different view option. Thank you.
Palestine
Tried It out and worked fine. private void m_SortItem_Click(object sender, EventArgs e) { //Clearing check marks from all menu items foreach (ToolStripMenuItem item in sortToolBtn.DropDownItems) { item.Checked = false; } //Selected the current item which is clicked. m_SortItem.Checked = true; }