在我的應用程序中,我正在使用右鍵單擊對象時彈出菜單項。我使用如下代碼動態建立菜單:如何在ContextMenuStrip中設置默認菜單項?
ContextMenuStrip menu = new ContextMenuStrip();
menu.Items.Add(new ToolStripMenuItem("Item1", aNiceImage, someFunction));
menu.Items.Add(new ToolStripMenuItem("Item2", alsoNiceImage, someOtherFunction));
現在我想設置粗體這些菜單項(因爲它是由Windows用戶體驗指南推薦),表示該行動與雙擊對應物體。
我該怎麼做?
這麼簡單...謝謝。 –
這適用於我在WPF項目中'ToolStripMenuItem1.Font = new Font(ToolStripMenuItem1.Font,System.Drawing.FontStyle.Bold);' – vinsa