This article shows examples of JavaFX 8 dialogs. The Dialog class is defined in the javafx.scene.control package. The Dialog is the base class and it has three specialized subclasses: Alert, ChoiceDialog and TextInputDialog. 1. Overview A Dialog in JavaFX wraps a DialogPane and provides the necessary API to present it to end users. From the ...