Class MenuBarSkin

java.lang.Object
javafx.scene.control.SkinBase<MenuBar>
javafx.scene.control.skin.MenuBarSkin
All Implemented Interfaces:
Skin<MenuBar>

public class MenuBarSkin extends SkinBase<MenuBar>
Default skin implementation for the MenuBar control. In essence it is a simple toolbar. For the time being there is no overflow behavior and we just hide nodes which fall outside the bounds.
Since:
9
See Also:
  • Property Details Link icon

  • Constructor Details Link icon

    • MenuBarSkin Link icon

      public MenuBarSkin(MenuBar control)
      Creates a new MenuBarSkin instance, installing the necessary child nodes into the Control children list, as well as the necessary input mappings for handling key, mouse, etc events.
      Parameters:
      control - The control that this skin should be installed onto.
  • Method Details Link icon

    • setDefaultSystemMenuBar Link icon

      public static void setDefaultSystemMenuBar(MenuBar menuBar)
      Set the default system menu bar. This allows an application to keep menu in the system menu bar after the last Window is closed.
      Parameters:
      menuBar - the menu bar
    • setSpacing Link icon

      public final void setSpacing(double value)
      Sets the value of the spacing property.
      Property description:
      Specifies the spacing between menu buttons on the MenuBar.
      Parameters:
      value - the value for the spacing property
      See Also:
    • getSpacing Link icon

      public final double getSpacing()
      Gets the value of the spacing property.
      Property description:
      Specifies the spacing between menu buttons on the MenuBar.
      Returns:
      the value of the spacing property
      See Also:
    • spacingProperty Link icon

      public final DoubleProperty spacingProperty()
      Specifies the spacing between menu buttons on the MenuBar.
      Returns:
      the spacing property
      See Also:
    • setContainerAlignment Link icon

      public final void setContainerAlignment(Pos value)
      Sets the value of the containerAlignment property.
      Property description:
      Specifies the alignment of the menu buttons inside the MenuBar (by default it is Pos.TOP_LEFT).
      Parameters:
      value - the value for the containerAlignment property
      See Also:
    • getContainerAlignment Link icon

      public final Pos getContainerAlignment()
      Gets the value of the containerAlignment property.
      Property description:
      Specifies the alignment of the menu buttons inside the MenuBar (by default it is Pos.TOP_LEFT).
      Returns:
      the value of the containerAlignment property
      See Also:
    • containerAlignmentProperty Link icon

      public final ObjectProperty<Pos> containerAlignmentProperty()
      Specifies the alignment of the menu buttons inside the MenuBar (by default it is Pos.TOP_LEFT).
      Returns:
      the containerAlignment property
      See Also:
    • getClassCssMetaData Link icon

      public static List<CssMetaData<? extends Styleable,?>> getClassCssMetaData()
      Returns the CssMetaData associated with this class, which may include the CssMetaData of its superclasses.
      Returns:
      the CssMetaData associated with this class, which may include the CssMetaData of its superclasses