我对应用程序使用 ancontextMenu1
和 an notifyIcon1
。当应用程序进入时Tray Icon
,我将按Right Click
,将出现一个菜单。
代码是这样的(我只添加了 2 项进行测试):
contextMenu1.MenuItems.Add("View");
contextMenu1.MenuItems.Add("Exit");
notifyIcon1.ContextMenu = contextMenu1;
在这一刻,在菜单中我只看到不做任何事情的项目。
我如何添加一个函数,比如private void exit()
. contextMenu1.MenuItems.Add("Exit")
当我按下该Exit
项目时,关闭我的应用程序(示例)。