Top Description Inners Fields Constructors Methods
javafx.scene.control

public Class MenuBar

extends Control
Class Inheritance
Annotations
@DefaultProperty:menus
Imports
javafx.css.converter.BooleanConverter, java.util.ArrayList, .Collections, .List, javafx.beans.DefaultProperty, javafx.beans.property.BooleanProperty, javafx.beans.value.ObservableValue, javafx.collections.FXCollections, .ObservableList, javafx.css.CssMetaData, .StyleableBooleanProperty, .Styleable, .StyleableProperty, javafx.scene.control.skin.MenuBarSkin, javafx.scene.AccessibleRole

A MenuBar control traditionally is placed at the very top of the user interface, and embedded within it are Menus. To add a menu to a menubar, you add it to the menus ObservableList. By default, for each menu added to the menubar, it will be represented as a button with the Menu text value displayed.

MenuBar sets focusTraversable to false.

To create and populate a MenuBar, you may do what is shown below. Please refer to the Menu API page for more information on how to configure it.
 Menu menu1 = new Menu("File");
Menu menu2 = new Menu("Options");
Menu menu3 = new Menu("Help");

MenuBar menuBar = new MenuBar(menu1, menu2, menu3);
Image of the MenuBar control
Since
JavaFX 2.0
See Also
Menu, MenuItem

Nested and Inner Type Summary

Modifier and TypeClass and Description
private static class

Field Summary

Modifier and TypeField and Description
private String
private static final String
private BooleanProperty

Constructor Summary

AccessConstructor and Description

Method Summary

Modifier and TypeMethod and Description
protected Skin<?>
createDefaultSkin()

Overrides javafx.scene.control.Control.createDefaultSkin.

Create a new instance of the default skin for this control.

public static List<CssMetaData<? extends Styleable, ?>>

Returns:

the CssMetaData
getClassCssMetaData
()

Hides javafx.scene.control.Control.getClassCssMetaData.

Gets the CssMetaData associated with this class, which may include the CssMetaData of its superclasses.

public List<CssMetaData<? extends Styleable, ?>>
getControlCssMetaData()

Overrides javafx.scene.control.Control.getControlCssMetaData.

Gets the unmodifiable list of the control's CSS-styleable properties.

protected Boolean
getInitialFocusTraversable()

Overrides javafx.scene.control.Control.getInitialFocusTraversable.

Returns the initial focus traversable state of this control, for use by the JavaFX CSS engine to correctly set its initial value.

public final ObservableList<Menu>

Returns:

the list of menus to show within this MenuBar
getMenus
()

The menus to show within this MenuBar.

public final boolean
public final void
setUseSystemMenuBar(boolean value)

public final BooleanProperty

Returns:

the use system menu bar property
useSystemMenuBarProperty
()

Use the system menu bar if the current platform supports it.

Inherited from javafx.scene.control.Control:
computeMaxHeightcomputeMaxWidthcomputeMinHeightcomputeMinWidthcomputePrefHeightcomputePrefWidthcontextMenuPropertyexecuteAccessibleActiongetBaselineOffsetgetContextMenugetControlChildrengetCssMetaDatagetSkingetTooltipisResizablelayoutChildrenloadSkinClassqueryAccessibleAttributesetContextMenusetSkinsetTooltipskinClassNamePropertyskinPropertytooltipProperty

Field Detail

BIND_MSGback to summary
private String BIND_MSG
DEFAULT_STYLE_CLASSback to summary
private static final String DEFAULT_STYLE_CLASS
useSystemMenuBarback to summary
private BooleanProperty useSystemMenuBar

Constructor Detail

Method Detail

createDefaultSkinback to summary
protected Skin<?> createDefaultSkin()

Overrides javafx.scene.control.Control.createDefaultSkin.

Doc from javafx.scene.control.Control.createDefaultSkin.

Create a new instance of the default skin for this control. This is called to create a skin for the control if no skin is provided via CSS -fx-skin or set explicitly in a sub-class with setSkin(...).

Returns:Skin<?>

new instance of default skin for this control. If null then the control will have no skin unless one is provided by css.

Annotations
@Override
getClassCssMetaDataback to summary
public static List<CssMetaData<? extends Styleable, ?>> getClassCssMetaData()

Hides javafx.scene.control.Control.getClassCssMetaData.

Gets the CssMetaData associated with this class, which may include the CssMetaData of its superclasses.

Returns:List<CssMetaData<? extends Styleable, ?>>

the CssMetaData

Since
JavaFX 8.0
getControlCssMetaDataback to summary
public List<CssMetaData<? extends Styleable, ?>> getControlCssMetaData()

Overrides javafx.scene.control.Control.getControlCssMetaData.

Doc from javafx.scene.control.Control.getControlCssMetaData.

Gets the unmodifiable list of the control's CSS-styleable properties.

Returns:List<CssMetaData<? extends Styleable, ?>>

the unmodifiable list of the control's CSS-styleable properties

Annotations
@Override
Since
JavaFX 8.0
getInitialFocusTraversableback to summary
protected Boolean getInitialFocusTraversable()

Overrides javafx.scene.control.Control.getInitialFocusTraversable.

Returns the initial focus traversable state of this control, for use by the JavaFX CSS engine to correctly set its initial value. This method is overridden as by default UI controls have focus traversable set to true, but that is not appropriate for this control.

Returns:Boolean

Doc from javafx.scene.control.Control.getInitialFocusTraversable.

the initial focus traversable state of this control

Annotations
@Override
Since
9
getMenusback to summary
public final ObservableList<Menu> getMenus()

The menus to show within this MenuBar. If this ObservableList is modified at runtime, the MenuBar will update as expected.

Returns:ObservableList<Menu>

the list of menus to show within this MenuBar

See Also
Menu
isUseSystemMenuBarback to summary
public final boolean isUseSystemMenuBar()
setUseSystemMenuBarback to summary
public final void setUseSystemMenuBar(boolean value)
useSystemMenuBarPropertyback to summary
public final BooleanProperty useSystemMenuBarProperty()

Use the system menu bar if the current platform supports it. This should not be set on more than one MenuBar instance per Stage. If this property is set to true on more than one MenuBar in the same Stage, then the last menu set is allowed to modify the system menu bar, and if there is an existing installed system menu it is unset and removed from the system menu bar. Note that trying to uni-directionally bind to this property will throw a RuntimeException. Please use bi-directional binding to this property instead.

Returns:BooleanProperty

the use system menu bar property

Since
JavaFX 2.1
javafx.scene.control back to summary

private Class MenuBar.StyleableProperties

extends Object
Class Inheritance

Field Summary

Modifier and TypeField and Description
private static final List<CssMetaData<? extends Styleable, ?>>
private static final CssMetaData<MenuBar, Boolean>

Constructor Summary

AccessConstructor and Description
private

Method Summary

Inherited from java.lang.Object:
cloneequalsfinalizegetClasshashCodenotifynotifyAlltoStringwaitwaitwait

Field Detail

STYLEABLESback to summary
private static final List<CssMetaData<? extends Styleable, ?>> STYLEABLES
USE_SYSTEM_MENU_BARback to summary
private static final CssMetaData<MenuBar, Boolean> USE_SYSTEM_MENU_BAR

Constructor Detail

StyleablePropertiesback to summary
private StyleableProperties()