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 aMenuBar
, 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);
Menu
, MenuItem
Modifier and Type | Class and Description |
---|---|
private static class |
Modifier and Type | Field and Description |
---|---|
private String | |
private static final String | |
private ObservableList | |
private BooleanProperty |
Access | Constructor and Description |
---|---|
public | |
public |
Modifier and Type | Method and Description |
---|---|
protected Skin | createDefaultSkin()
Overrides javafx. Create a new instance of the default skin for this control. |
public static List | Returns: theCssMetaData Hides javafx. Gets the |
public List | getControlCssMetaData()
Overrides javafx. Gets the unmodifiable list of the control's CSS-styleable properties. |
protected Boolean | getInitialFocusTraversable()
Overrides javafx. 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 | Returns: the list of menus to show within this MenuBarThe menus to show within this MenuBar. |
public final boolean | |
public final void | |
public final BooleanProperty | Returns: the use system menu bar propertyUse the system menu bar if the current platform supports it. |
BIND_MSG | back to summary |
---|---|
private String BIND_MSG |
DEFAULT_STYLE_CLASS | back to summary |
---|---|
private static final String DEFAULT_STYLE_CLASS |
menus | back to summary |
---|---|
private ObservableList<Menu> menus |
useSystemMenuBar | back to summary |
---|---|
private BooleanProperty useSystemMenuBar |
MenuBar | back to summary |
---|---|
public MenuBar() Creates a new empty MenuBar. |
MenuBar | back to summary |
---|---|
public MenuBar(Menu... menus) Creates a new MenuBar populated with the given menus.
|
createDefaultSkin | back to summary |
---|---|
protected Skin Overrides javafx. Doc from javafx. 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 |
getClassCssMetaData | back to summary |
---|---|
public static List Hides javafx. Gets the
|
getControlCssMetaData | back to summary |
---|---|
public List Overrides javafx. Doc from javafx. Gets the unmodifiable list of the control's CSS-styleable properties.
|
getInitialFocusTraversable | back to summary |
---|---|
protected Boolean getInitialFocusTraversable() Overrides javafx. 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.
|
getMenus | back to summary |
---|---|
public final ObservableList The menus to show within this MenuBar. If this ObservableList is modified at runtime, the MenuBar will update as expected.
|
isUseSystemMenuBar | back to summary |
---|---|
public final boolean isUseSystemMenuBar() |
setUseSystemMenuBar | back to summary |
---|---|
public final void setUseSystemMenuBar(boolean value) |
useSystemMenuBarProperty | back 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.
|
Modifier and Type | Field and Description |
---|---|
private static final List | |
private static final CssMetaData |
Access | Constructor and Description |
---|---|
private |
STYLEABLES | back to summary |
---|---|
private static final List<CssMetaData<? extends Styleable, ?>> STYLEABLES |
USE_SYSTEM_MENU_BAR | back to summary |
---|---|
private static final CssMetaData<MenuBar, Boolean> USE_SYSTEM_MENU_BAR |
StyleableProperties | back to summary |
---|---|
private StyleableProperties() |