Uses of Class
javafx.scene.input.KeyCombination
-
Packages that use KeyCombination 软件包 描述 javafx.scene 为JavaFX Scene Graph API提供核心的基类集。javafx.scene.control JavaFX用户界面控件(UI控件或仅控件)是JavaFX场景中的专用节点,特别适用于许多不同应用程序环境中的重用。javafx.scene.input 提供一组用于鼠标和键盘输入事件处理的类。javafx.stage 提供JavaFX内容的顶级容器类。 -
-
Uses of KeyCombination in javafx.scene
Methods in javafx.scene that return types with arguments of type KeyCombination Modifier and Type 方法 描述 ObservableMap<KeyCombination,Runnable>
Scene. getAccelerators()
获取此Scene
的加速器列表。ObservableMap<KeyCombination,ObservableList<Mnemonic>>
Scene. getMnemonics()
获取Scene
的助记符列表。 -
Uses of KeyCombination in javafx.scene.control
Methods in javafx.scene.control that return KeyCombination Modifier and Type 方法 描述 KeyCombination
MenuItem. getAccelerator()
获取属性加速器的值。Methods in javafx.scene.control that return types with arguments of type KeyCombination Modifier and Type 方法 描述 ObjectProperty<KeyCombination>
MenuItem. acceleratorProperty()
加速器属性使得能够在一个击键中访问关联的动作。Methods in javafx.scene.control with parameters of type KeyCombination Modifier and Type 方法 描述 void
MenuItem. setAccelerator(KeyCombination value)
设置属性加速器的值。 -
Uses of KeyCombination in javafx.scene.input
Subclasses of KeyCombination in javafx.scene.input Modifier and Type Class 描述 class
KeyCharacterCombination
该类表示主键由其字符指定的组合键。class
KeyCodeCombination
该类代表其主键由其KeyCode
指定的组合键。Fields in javafx.scene.input declared as KeyCombination Modifier and Type Field 描述 static KeyCombination
KeyCombination. NO_MATCH
与任何事件匹配的KeyCombination。Methods in javafx.scene.input that return KeyCombination Modifier and Type 方法 描述 KeyCombination
Mnemonic. getKeyCombination()
static KeyCombination
KeyCombination. keyCombination(String name)
从指定的字符串构造一个新的KeyCombination
。static KeyCombination
KeyCombination. valueOf(String value)
从指定的字符串构造一个新的KeyCombination
。Methods in javafx.scene.input with parameters of type KeyCombination Modifier and Type 方法 描述 void
Mnemonic. setKeyCombination(KeyCombination keyCombination)
Constructors in javafx.scene.input with parameters of type KeyCombination Constructor 描述 Mnemonic(Node node, KeyCombination keyCombination)
构造一个Mnemonic
与指定的目标Node
和触发器KeyCombination
。 -
Uses of KeyCombination in javafx.stage
Methods in javafx.stage that return KeyCombination Modifier and Type 方法 描述 KeyCombination
Stage. getFullScreenExitKeyCombination()
获取用于退出全屏模式的当前顺序。Methods in javafx.stage that return types with arguments of type KeyCombination Modifier and Type 方法 描述 ObjectProperty<KeyCombination>
Stage. fullScreenExitKeyProperty()
获取全屏幕退出组合键的属性。Methods in javafx.stage with parameters of type KeyCombination Modifier and Type 方法 描述 void
Stage. setFullScreenExitKeyCombination(KeyCombination keyCombination)
指定将允许用户退出全屏模式的KeyCombination。
-