I've got a menu with a custom Renderer:
menuMain.Renderer = new ToolStripProfessionalRenderer(new MenuColors());
Is there a way to change the font or perhaps make the menu item italic when moving the mouse over it?
I've got the event to change the background, but don't know about font / font color?
internal class MenuColors : ProfessionalColorTable
{
public override Color MenuItemSelected
{
get { return MenuHoverColor; }
}
}