C# ContextMenuStrip:右键菜单控件(上下文菜单)

        在 C# WinForm开发中的右键菜单又叫上下文菜单,即右击某个控件或窗体时出现的菜单。

        在 Windows 窗体应用程序中,上下文菜单在设置时直接与控件的 ContextMenuStrip 属性绑定即可。

                           C# ContextMenuStrip:右键菜单控件(上下文菜单)_第1张图片

        

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace ContextMenuStripForm
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        //打开新窗体的菜单项单击事件
        private void 打开窗体ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            ContextMenuStrip menu = new ContextMenuStrip();
            menu.Show();
        }

        //关闭窗体菜单项的单击事件
        private void 关闭窗体ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            this.Close();
        }
       
    }
}

                                  C# ContextMenuStrip:右键菜单控件(上下文菜单)_第2张图片

你可能感兴趣的:(C#,WinForm)