Servis-Rhino 4211B Betriebsanweisung Seite 281

  • Herunterladen
  • Zu meinen Handbüchern hinzufügen
  • Drucken
  • Seite
    / 298
  • Inhaltsverzeichnis
  • LESEZEICHEN
  • Bewertet. / 5. Basierend auf Kundenbewertungen
Seitenansicht 280
JavaFX CheckMenuItem
JavaFX RadioMenuItem
JavaFX CustomMenuItem
JavaFX SeparatorMenuItem
JavaFX ContextMenu
The ContextMenu is a menu container that can be popped up in different places. It can have
MenuItems added to it. For example, the following will add a menu to a TreeTableView:
ContextMenu contextMenu = new ContextMenu();
MenuItem menuItem = new MenuItem("Expand All");
contextMenu.getItems().add(menuItem);
menuItem = new MenuItem("Collapse All");
contextMenu.getItems().add(menuItem);
treeTableView.setContextMenu(contextMenu);
See also:
JavaFX MenuItem
JavaFX Containers
A container is a widget that provides encapsulation for other widgets. Generally a container
governs the visibility and placement of any children that may be added to it. Most container
widgets live in the javafx.scene.layout package.
Container always inherit from javafx.scene.Parent.
JavaFX Accordion
The Accordion is a container which provides named containers for other widgets. Only one of
those containers will be shown at a time while the other containers will be shown to exist by header
areas. Clicking on a header area will reveal that container while hiding the previous container.
The children of an Accordion must be instances of TitledPane.
Page 281
Seitenansicht 280
1 2 ... 276 277 278 279 280 281 282 283 284 285 286 ... 297 298

Kommentare zu diesen Handbüchern

Keine Kommentare