Uses of Class
javafx.event.ActionEvent
-
Packages that use ActionEvent 软件包 描述 javafx.animation 提供一组类,便于使用基于过渡的动画。javafx.event 为FX事件,交付和处理提供基本框架。javafx.scene.control JavaFX用户界面控件(UI控件或仅控件)是JavaFX场景中的专用节点,特别适用于许多不同应用程序环境中的重用。javafx.scene.media 提供用于将音频和视频集成到Java FX应用程序中的一组类。 -
-
Uses of ActionEvent in javafx.animation
Methods in javafx.animation that return types with arguments of type ActionEvent Modifier and Type 方法 描述 EventHandler<ActionEvent>
Animation. getOnFinished()
获取属性onFinished的值。EventHandler<ActionEvent>
KeyFrame. getOnFinished()
返回onFinished
此事件处理KeyFrame
。ObjectProperty<EventHandler<ActionEvent>>
Animation. onFinishedProperty()
在这个Animation
的结论中执行的行动。Method parameters in javafx.animation with type arguments of type ActionEvent Modifier and Type 方法 描述 void
Animation. setOnFinished(EventHandler<ActionEvent> value)
设置属性onFinished的值。Constructor parameters in javafx.animation with type arguments of type ActionEvent Constructor 描述 KeyFrame(Duration time, String name, EventHandler<ActionEvent> onFinished, Collection<KeyValue> values)
构造函数KeyFrame
KeyFrame(Duration time, String name, EventHandler<ActionEvent> onFinished, KeyValue... values)
构造函数KeyFrame
KeyFrame(Duration time, EventHandler<ActionEvent> onFinished, KeyValue... values)
构造函数KeyFrame
-
Uses of ActionEvent in javafx.event
Fields in javafx.event with type parameters of type ActionEvent Modifier and Type Field 描述 static EventType<ActionEvent>
ActionEvent. ACTION
ActionEvent唯一有效的EventType。static EventType<ActionEvent>
ActionEvent. ANY
所有动作事件类型的公共超类型。Methods in javafx.event that return ActionEvent Modifier and Type 方法 描述 ActionEvent
ActionEvent. copyFor(Object newSource, EventTarget newTarget)
Methods in javafx.event that return types with arguments of type ActionEvent Modifier and Type 方法 描述 EventType<? extends ActionEvent>
ActionEvent. getEventType()
-
Uses of ActionEvent in javafx.scene.control
Methods in javafx.scene.control that return types with arguments of type ActionEvent Modifier and Type 方法 描述 EventHandler<ActionEvent>
ButtonBase. getOnAction()
获取属性onAction的值。EventHandler<ActionEvent>
ChoiceBox. getOnAction()
获取属性onAction的值。EventHandler<ActionEvent>
ComboBoxBase. getOnAction()
获取属性onAction的值。EventHandler<ActionEvent>
ContextMenu. getOnAction()
获取属性onAction的值。EventHandler<ActionEvent>
MenuItem. getOnAction()
获取属性onAction的值。EventHandler<ActionEvent>
TextField. getOnAction()
获取属性onAction的值。ObjectProperty<EventHandler<ActionEvent>>
ButtonBase. onActionProperty()
按钮的动作,当按钮被触发时被调用。ObjectProperty<EventHandler<ActionEvent>>
ChoiceBox. onActionProperty()
ChoiceBox操作,每当更改ChoiceBoxvalue
属性时调用。ObjectProperty<EventHandler<ActionEvent>>
ComboBoxBase. onActionProperty()
ComboBox操作,当ComboBoxvalue
属性更改时调用。ObjectProperty<EventHandler<ActionEvent>>
ContextMenu. onActionProperty()
当这个ContextMenu
包含的项目被激活时,通知回调函数。ObjectProperty<EventHandler<ActionEvent>>
MenuItem. onActionProperty()
每当MenuItem被触发时调用该动作。ObjectProperty<EventHandler<ActionEvent>>
TextField. onActionProperty()
与此文本字段关联的操作处理程序,如果没有分配操作处理程序,null
。Method parameters in javafx.scene.control with type arguments of type ActionEvent Modifier and Type 方法 描述 void
ButtonBase. setOnAction(EventHandler<ActionEvent> value)
设置属性onAction的值。void
ChoiceBox. setOnAction(EventHandler<ActionEvent> value)
设置属性onAction的值。void
ComboBoxBase. setOnAction(EventHandler<ActionEvent> value)
设置属性onAction的值。void
ContextMenu. setOnAction(EventHandler<ActionEvent> value)
设置属性onAction的值。void
MenuItem. setOnAction(EventHandler<ActionEvent> value)
设置属性onAction的值。void
TextField. setOnAction(EventHandler<ActionEvent> value)
设置属性onAction的值。 -
Uses of ActionEvent in javafx.scene.media
Subclasses of ActionEvent in javafx.scene.media Modifier and Type Class 描述 class
MediaMarkerEvent
代表媒体标记的ActionEvent
。
-