Spec-Zone .ru
спецификации, руководства, описания, API
|
Package | Description |
---|---|
javafx.scene.control |
The JavaFX User Interface Controls (UI Controls or just Controls) are
specialized Nodes in the JavaFX Scenegraph especially suited for reuse in
many different application contexts.
|
Modifier and Type | Class and Description |
---|---|
class |
CheckMenuItem
A
MenuItem that can be toggled between selected and unselected states. |
class |
CustomMenuItem
|
class |
Menu
A popup menu of actionable items which is displayed to the user only upon request.
|
class |
RadioMenuItem
|
class |
SeparatorMenuItem
A
MenuItem that as the name suggests allows for a horizontal Separator to be embedded within it,
by assigning a Separator to the content property of the CustomMenuItem
This is provided for convenience as groups of menuitems can be separated
by a separator. |
Modifier and Type | Field and Description |
---|---|
private ObservableList<MenuItem> |
MenuButton.items
*
Properties *
*
|
private ObservableList<MenuItem> |
Menu.items
*
Instance variables *
*
|
private ObservableList<MenuItem> |
ContextMenu.items |
private java.util.Collection<? extends MenuItem> |
MenuButtonBuilder.items |
private java.util.Collection<? extends MenuItem> |
MenuBuilder.items |
private java.util.Collection<? extends MenuItem> |
ContextMenuBuilder.items |
Modifier and Type | Method and Description |
---|---|
MenuItem |
MenuItemBuilder.build()
Make an instance of
MenuItem based on the properties set on this builder. |
Modifier and Type | Method and Description |
---|---|
ObservableList<MenuItem> |
MenuButton.getItems()
The items to show within this buttons menu.
|
ObservableList<MenuItem> |
Menu.getItems()
The items to show within this menu.
|
ObservableList<MenuItem> |
ContextMenu.getItems()
The menu items on the context menu.
|
Modifier and Type | Method and Description |
---|---|
void |
MenuItemBuilder.applyTo(MenuItem x) |
B |
MenuButtonBuilder.items(MenuItem... x)
Add the given items to the List of items in the
items property for the instance constructed by this builder. |
B |
MenuBuilder.items(MenuItem... x)
Add the given items to the List of items in the
items property for the instance constructed by this builder. |
B |
ContextMenuBuilder.items(MenuItem... x)
Add the given items to the List of items in the
items property for the instance constructed by this builder. |
Modifier and Type | Method and Description |
---|---|
B |
MenuButtonBuilder.items(java.util.Collection<? extends MenuItem> x)
Add the given items to the List of items in the
items property for the instance constructed by this builder. |
B |
MenuBuilder.items(java.util.Collection<? extends MenuItem> x)
Add the given items to the List of items in the
items property for the instance constructed by this builder. |
B |
ContextMenuBuilder.items(java.util.Collection<? extends MenuItem> x)
Add the given items to the List of items in the
items property for the instance constructed by this builder. |
Constructor and Description |
---|
ContextMenu(MenuItem... items)
Create a new ContextMenu initialized with the given items
|
SplitMenuButton(MenuItem... items)
Creates a new split menu button with the given list of menu items.
|
Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved. Use is subject to