JavaFX ComboBox
JavaFX Hyperlink
A Hyperlink widget behaves like a button but looks like a browser link.
JavaFX ImageView
The ImageView widget (which is in package javafx.scene.image) displays an image.
The image can be supplied on the ImageView constructor.
Take care to not share ImageViews between other components. Each component will need its
own instance of an ImageView because the same node in the scene graph can not occur in
multiple places.
An example of creating an ImageView instance might be:
ImageView imageView = new ImageView(new
Image(Splash.class.getResourceAsStream("images/Splash.png")));
See also:
• javafx.scene.image.Image
JavaFX Label
The Label widget shows a piece of text on the screen.
The value of the label can be accessed through the "text" property.
Page 269
Comentários a estes Manuais