1

Winform を使用して、メニュー項目を「ラジオ チェック」することは可能ですか?

4

1 に答える 1

2

はい、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;
}
于 2009-11-27T10:57:38.393 に答える