tags:

views:

220

answers:

2

In .Net1.1 i used a MenuItem Select Event, but for the ToolStripMenuItems this Event doesn't seem to exist. What is the alternative?

Edit: MouseEnter or MouseHover doesn't catch Menu Selection via the Keyboard.

A: 

You could use ToolStripMenuItem.MouseEnter or ToolStripMenuItem.MouseHover

Hath
A: 

Is there any reason why you can't use MenuItem? From the MSDN docs:

Although ToolStripMenuItem replaces and adds functionality to the MenuItem control of previous versions, MenuItem is retained for both backward compatibility and future use if you choose.

So MenuItem will continue to be supported in the future...

thecoop