Question

Using Winform, is it possible to "radio check" a menu item?

Was it helpful?

Solution

Yes see MSDN

// This method is called from the constructor of the form to set up the menu items.
public void ConfigureMyMenus()
{
   /* Set all of these menu items to Radio-Button check marks so the user can see 
      that only one color can be selected at a time. */
   menuItemRed.RadioCheck = true;
   menuItemBlue.RadioCheck = true;
   menuItemGreen.RadioCheck = true;
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top