DesktopMenuBar
From Xojo Documentation
New in 2021r3
Used to handle the application’s and windows’ menu bar.
Properties | |||
|
Methods | |||||||
|
Notes
When you create a new desktop project, a default MenuBar (called MainMenuBar) is added to your project.
You can refer to a MenuBar globally by its name because an "implicit instance" is automatically created for you to use. If you use the global name, then you will get the same MenuBar instance everywhere you use it. If you modify the MenuBar in code, the modification will appear everywhere the MenuBar is used.
If you would rather have separate instances of the MenuBar, you should assign it in code manually in the DesktopWindow.Opening event:
On macOS, if a window does not have a MenuBar specified, then the window uses the MenuBar specified on DesktopApplication.MenuBar.
On Windows and Linux, if a window does not have a MenuBar specified, then the window will display without a MenuBar even if one is specified in DesktopApplication.MenuBar.
Example
See examples for the DesktopMenuItem class.
See Also
DesktopMenuItem; DesktopApplication.MenuBar and DesktopWindow.MenuBar properties.