Package | Description |
---|---|
com.sun.javafx.scene.control.skin | |
javafx.stage |
Provides the top-level container classes for JavaFX content.
|
Modifier and Type | Method and Description |
---|---|
void |
CustomColorDialog.setOnHidden(EventHandler<WindowEvent> onHidden) |
Modifier and Type | Field and Description |
---|---|
static EventType<WindowEvent> |
WindowEvent.ANY
Common supertype for all window event types.
|
static EventType<WindowEvent> |
WindowEvent.WINDOW_CLOSE_REQUEST
This event is delivered to a
window when there is an external request to close that window.
|
static EventType<WindowEvent> |
WindowEvent.WINDOW_HIDDEN
This event occurs on window just after it is hidden.
|
static EventType<WindowEvent> |
WindowEvent.WINDOW_HIDING
This event occurs on window just before it is hidden.
|
static EventType<WindowEvent> |
WindowEvent.WINDOW_SHOWING
This event occurs on window just before it is shown.
|
static EventType<WindowEvent> |
WindowEvent.WINDOW_SHOWN
This event occurs on window just after it is shown.
|
Modifier and Type | Method and Description |
---|---|
WindowEvent |
WindowEvent.copyFor(Object newSource,
EventTarget newTarget) |
WindowEvent |
WindowEvent.copyFor(Object newSource,
EventTarget newTarget,
EventType<WindowEvent> type)
Creates a copy of the given event with the given fields substituted.
|
Modifier and Type | Method and Description |
---|---|
EventType<WindowEvent> |
WindowEvent.getEventType() |
EventHandler<WindowEvent> |
Window.getOnCloseRequest() |
EventHandler<WindowEvent> |
Window.getOnHidden() |
EventHandler<WindowEvent> |
Window.getOnHiding() |
EventHandler<WindowEvent> |
Window.getOnShowing() |
EventHandler<WindowEvent> |
Window.getOnShown() |
ObjectProperty<EventHandler<WindowEvent>> |
Window.onCloseRequestProperty() |
ObjectProperty<EventHandler<WindowEvent>> |
Window.onHiddenProperty() |
ObjectProperty<EventHandler<WindowEvent>> |
Window.onHidingProperty() |
ObjectProperty<EventHandler<WindowEvent>> |
Window.onShowingProperty() |
ObjectProperty<EventHandler<WindowEvent>> |
Window.onShownProperty() |
Modifier and Type | Method and Description |
---|---|
WindowEvent |
WindowEvent.copyFor(Object newSource,
EventTarget newTarget,
EventType<WindowEvent> type)
Creates a copy of the given event with the given fields substituted.
|
B |
WindowBuilder.onCloseRequest(EventHandler<WindowEvent> x)
Deprecated.
Set the value of the
onCloseRequest property for the instance constructed by this builder. |
B |
WindowBuilder.onHidden(EventHandler<WindowEvent> x)
Deprecated.
Set the value of the
onHidden property for the instance constructed by this builder. |
B |
WindowBuilder.onHiding(EventHandler<WindowEvent> x)
Deprecated.
Set the value of the
onHiding property for the instance constructed by this builder. |
B |
WindowBuilder.onShowing(EventHandler<WindowEvent> x)
Deprecated.
Set the value of the
onShowing property for the instance constructed by this builder. |
B |
WindowBuilder.onShown(EventHandler<WindowEvent> x)
Deprecated.
Set the value of the
onShown property for the instance constructed by this builder. |
void |
Window.setOnCloseRequest(EventHandler<WindowEvent> value) |
void |
Window.setOnHidden(EventHandler<WindowEvent> value) |
void |
Window.setOnHiding(EventHandler<WindowEvent> value) |
void |
Window.setOnShowing(EventHandler<WindowEvent> value) |
void |
Window.setOnShown(EventHandler<WindowEvent> value) |
Copyright © 2020. All rights reserved.