怎樣在Winform程序中添加鼠標右鍵時使子選項顯示圖片。編程
注:spa
博客主頁:
https://blog.csdn.net/badao_liumang_qizhi
關注公衆號
霸道的程序猿
獲取編程相關電子書、教程推送與免費下載。 .net
新建Winform程序,在Properties下的Resources下添加照片資源。code
而後在窗體中拖拽一個Button,在Button的點擊事件中 orm
//聲明鼠標右鍵菜單 System.Windows.Forms.ContextMenuStrip ctxMenu = new System.Windows.Forms.ContextMenuStrip(); //設置右鍵子選項 ToolStripMenuItem mnuDelete = new ToolStripMenuItem(); //設置子選項的文本 mnuDelete.Text = "刪除"; //設置子選項的照片 mnuDelete.Image = Properties.Resources.delete; //將子選項添加到右鍵菜單 ctxMenu.Items.Add(mnuDelete); //獲取Button按鈕 Button button = sender as Button; //使右鍵菜單顯示並設置顯示位置 ctxMenu.Show(button, new Point(0, 0));