Users Pricing

forum

Home Forums ToolStripMenuItem and KeyPress or KeyDown event – MindStick

ToolStripMenuItem and KeyPress or KeyDown event

Anonymous User 4780 28 Jan 2014

I am using ToolStripDropDownButton and dynamically adding menu items as below:

toolStripDropDownButton1.DropDownItems.Clear();

ToolStripMenuItem item1 = new ToolStripMenuItem("Item1");

toolStripDropDownButton1.DropDownItems.Add(item1);

ToolStripMenuItem item2 = new ToolStripMenuItem("Item2");

toolStripDropDownButton1.DropDownItems.Add(item2);

I would like to delete the selected menu item when the Delete key is pressed. But the ToolStripMenuItem doesn't have KeyPress or KeyDown event.

I am using Visual Studio 2010 and .NET 4.0. Any suggestions on how to achieve this functionality?


1 Answers

Markdown for AI

A clean, structured version of this page for AI assistants and LLMs.

Open .md