Remove DotNET menu dropdown grey area for icons - vb.net

How do I remove the area in a dropdown menu where the menu item icons are typically displayed?
DropDownMenuGreyAreaHeadAche http://en.wiki.mcneel.com/content/upload/images/MenuImageBar.png
I just need to remove the grey area in this particular dropdown, other dropdowns of menu items in the same menu bar need to retain this area because they do have icons.
Edit: This is WinForms.

You just need to set the ShowImageMargin property of the menu to false

Related

Devexpress Form With Header Panel (Title) and Menu Below Panel

Can someone give me insight how can I achieve the form with panel title first and then menu bar below panel (barmanager). Because devexpress always put barmanager on top
Thank you
EDIT :
After I add standalonebardock, the result as picture shown below: the red bar is standalonebardock
UPDATE :
After I drag the barmanager menu into standalonedock, now it is already inside the dock. But the menu still on top docking, what I need how to make space above menu so I can write title/image/etc
The StandaloneBarDockControl control allows bars to be displayed at any position within the form, not simply docked to the form’s edge. To do this, create a StandaloneBarDockControl object and add bars to it. Bars can be added to the control at design time or runtime.

Popup menu hidden behind other items in FlatList

I have a FlatList and each item uses the react-native-popup-menu functionality to show a popup menu when clicked. However, only the top of the menu appears and the rest is hidden behind the following list items. Is there a way to have the menu appear atop the entire FlatList? Thank you.

How do you add a button to the "navigation bar" in IntelliJ?

By default, in IntelliJ, the main toolbar is hidden. When it is hidden, there are essential buttons that are shown in the navigation bar. I don't need the full toolbar, but it would be nice to be able to add a single button to the navigation bar.
How do you add a button to the navigation bar?
You can customize any menu or toolbar in IDEA in settings by going to:
Settings-> Appearance and Behavior -> Menus and Toolbars
The item you are looking for is called
Navigation Bar Toolbar

how to create a vertical menu bar with drop down items in vb.net

Is it possible to create a vertical menu bar with drop down items?
I have created a vertical menu using buttons and placed them into a panel and assigning the panel's dock property to left, but couldn't find a way to add drop down items to each button.
Can someone help how to create dropdown items?
Like this? You can find MenuStrip Tool in Toolbox. Add it to the form. Right-click and select Edit Items.... You can add MenuItem (Menu1 in my example), and add SubMenus from Menu1 Property's DropDownItems.

MenuItem in Compact Framework 3.5

Is there anyway to programmatically force a MenuItem to raise their popup event? Basically, if you click on it with your stylus or finger, it shows the MenuItem collection for that specific MenuItem. I'd like to be able to do by using a button that I capture.
If you add your menu items to a ContextMenu you can then call ContextMenu.Show with a position and it will show the context menu at that position.
So you could do that in your button click event. Or did you want to 'fake' taps on the menu buttons on the soft menu bar?