When using the ToolStrip widget and when Compatibility View on Internet Explorer is enabled, the menu background is transparent (see screenshot1). It works fine when we have Compatibility View turned off (see screenshot2).
We would like the behavior to be consistent (with background color instead of transparent). We're on version 5.1.
It would be good if there is a patch (instead of an upgrade) to fix this problem, since we made some customization, and we would like to avoid redoing the customization if possible.
See below for the code to reproduce the problem:
We would like the behavior to be consistent (with background color instead of transparent). We're on version 5.1.
It would be good if there is a patch (instead of an upgrade) to fix this problem, since we made some customization, and we would like to avoid redoing the customization if possible.
See below for the code to reproduce the problem:
Code:
Menu menu = new Menu(); menu.addItem(new MenuItem("Item 1")); menu.addItem(new MenuItem("Item 2")); menu.addItem(new MenuItem("Item 3")); menu.addItem(separator); menu.addItem(new MenuItem("Item 4")); menu.addItem(new MenuItem("Item 5")); menu.addItem(new MenuItem("Item 6")); ToolStripMenuButton toolButton = new ToolStripMenuButton("Tools"); toolButton.setMenu(menu); ToolStrip toolStrip = new ToolStrip(); toolStrip.addMenuButton(toolButton);
Comment