I expose you my problem today. I created a statusStripLabel for showing the current name - the selected item of MenuStrip or ToolStripMenuItem when the mouse is hover it. I have this code : ( it's working )
private void ouvrirToolStripMenuItem1_MouseHover(object sender, EventArgs e)
{
ToolStripMenuItem houver = (ToolStripMenuItem)sender;
MenuStatusLabel.Text = houver.Text;
}
But I want make for all toolstripmenu and no just one. ( a function or something like that )