Context Menu Demo : Menu « GUI Windows Forms « C# / CSharp Tutorial






using System;
using System.Drawing;
using System.Windows.Forms;
   
class ContextMenuDemo: Form
{
     MenuItem miColor;
   
     public static void Main()
     {
          Application.Run(new ContextMenuDemo());
     }
     public ContextMenuDemo()
     {
          EventHandler eh = new EventHandler(MenuColorOnClick);
   
          MenuItem[] ami = { new MenuItem("Black",   eh),
                             new MenuItem("Blue",    eh),
                             new MenuItem("Green",   eh),
                             new MenuItem("White",   eh) };
   
          foreach (MenuItem mi in ami)
               mi.RadioCheck = true;
   
          miColor = ami[3];
          miColor.Checked = true;
          BackColor = Color.FromName(miColor.Text);
   
          ContextMenu = new ContextMenu(ami);
     }
     void MenuColorOnClick(object obj, EventArgs ea)
     {
          miColor.Checked = false;
          miColor = (MenuItem) obj;
          miColor.Checked = true;
   
          BackColor = Color.FromName(miColor.Text);
     }
}








23.39.Menu
23.39.1.Add Menu to FormAdd Menu to Form
23.39.2.Create a Menu without using the IDECreate a Menu without using the IDE
23.39.3.Menu RightToLeftMenu RightToLeft
23.39.4.Add SubmenuAdd Submenu
23.39.5.Set Label text in menu actionSet Label text in menu action
23.39.6.Context Menu Demo
23.39.7.Context Menu Using Add
23.39.8.Add MenuStrip and ToolStripMenuItem to Form