Uses of Class
javafx.scene.control.DialogEvent
-
Uses of DialogEvent in javafx.scene.control
Modifier and TypeFieldDescriptionstatic final EventType<DialogEvent>
DialogEvent.ANY
Common supertype for all dialog event types.static final EventType<DialogEvent>
DialogEvent.DIALOG_CLOSE_REQUEST
This event is delivered to a dialog when there is an external request to close that dialog.static final EventType<DialogEvent>
DialogEvent.DIALOG_HIDDEN
This event occurs on dialog just after it is hidden.static final EventType<DialogEvent>
DialogEvent.DIALOG_HIDING
This event occurs on dialog just before it is hidden.static final EventType<DialogEvent>
DialogEvent.DIALOG_SHOWING
This event occurs on dialog just before it is shown.static final EventType<DialogEvent>
DialogEvent.DIALOG_SHOWN
This event occurs on dialog just after it is shown.Modifier and TypeMethodDescriptionDialogEvent.getEventType()
Creates a copy of the given event with the given fields substituted.final EventHandler<DialogEvent>
Dialog.getOnCloseRequest()
Gets the value of theonCloseRequest
property.final EventHandler<DialogEvent>
Dialog.getOnHidden()
Gets the value of theonHidden
property.final EventHandler<DialogEvent>
Dialog.getOnHiding()
Gets the value of theonHiding
property.final EventHandler<DialogEvent>
Dialog.getOnShowing()
Gets the value of theonShowing
property.final EventHandler<DialogEvent>
Dialog.getOnShown()
Gets the value of theonShown
property.final ObjectProperty<EventHandler<DialogEvent>>
Dialog.onCloseRequestProperty()
Called when there is an external request to close thisDialog
.final ObjectProperty<EventHandler<DialogEvent>>
Dialog.onHiddenProperty()
Called just after the Dialog has been hidden.final ObjectProperty<EventHandler<DialogEvent>>
Dialog.onHidingProperty()
Called just prior to the Dialog being hidden.final ObjectProperty<EventHandler<DialogEvent>>
Dialog.onShowingProperty()
Called just prior to the Dialog being shown.final ObjectProperty<EventHandler<DialogEvent>>
Dialog.onShownProperty()
Called just after the Dialog is shown.Modifier and TypeMethodDescriptionfinal void
Dialog.setOnCloseRequest
(EventHandler<DialogEvent> value) Sets the value of theonCloseRequest
property.final void
Dialog.setOnHidden
(EventHandler<DialogEvent> value) Sets the value of theonHidden
property.final void
Dialog.setOnHiding
(EventHandler<DialogEvent> value) Sets the value of theonHiding
property.final void
Dialog.setOnShowing
(EventHandler<DialogEvent> value) Sets the value of theonShowing
property.final void
Dialog.setOnShown
(EventHandler<DialogEvent> value) Sets the value of theonShown
property.