Hi' I'd like to add a tooltip to MenuItem (member of ContextMenu)
how can I do that?
This code does not work (Value of type 'System.Windows.Forms.MenuItem' cannot be converted to 'System.Windows.Forms.Control'):
tx,
matej
how can I do that?
This code does not work (Value of type 'System.Windows.Forms.MenuItem' cannot be converted to 'System.Windows.Forms.Control'):
Visual Basic:
Dim m As MenuItem = Me.ContextMenu1.MenuItems(0)
Me.ToolTip1.SetToolTip(m, "blablabla")
tx,
matej