Uses of Class
javafx.scene.input.InputMethodEvent
-
Packages that use InputMethodEvent 软件包 描述 javafx.scene 为JavaFX Scene Graph API提供核心的基类集。javafx.scene.control.skin javafx.scene.control.skin包是皮肤类(通常每个UI控件一个)所在的位置javafx.scene.input 提供一组用于鼠标和键盘输入事件处理的类。 -
-
Uses of InputMethodEvent in javafx.scene
Methods in javafx.scene that return types with arguments of type InputMethodEvent Modifier and Type 方法 描述 EventHandler<? super InputMethodEvent>
Node. getOnInputMethodTextChanged()
获取onInputMethodTextChanged属性的值。EventHandler<? super InputMethodEvent>
Scene. getOnInputMethodTextChanged()
获取onInputMethodTextChanged属性的值。ObjectProperty<EventHandler<? super InputMethodEvent>>
Node. onInputMethodTextChangedProperty()
当这个Node
具有输入焦点并且输入法文本已经改变时,定义要调用的函数。ObjectProperty<EventHandler<? super InputMethodEvent>>
Scene. onInputMethodTextChangedProperty()
当这个Node
具有输入焦点并且输入法文本已经改变时,定义要调用的函数。Method parameters in javafx.scene with type arguments of type InputMethodEvent Modifier and Type 方法 描述 void
Node. setOnInputMethodTextChanged(EventHandler<? super InputMethodEvent> value)
设置属性onInputMethodTextChanged的值。void
Scene. setOnInputMethodTextChanged(EventHandler<? super InputMethodEvent> value)
设置属性onInputMethodTextChanged的值。 -
Uses of InputMethodEvent in javafx.scene.control.skin
Methods in javafx.scene.control.skin with parameters of type InputMethodEvent Modifier and Type 方法 描述 protected void
TextInputControlSkin. handleInputMethodEvent(InputMethodEvent event)
-
Uses of InputMethodEvent in javafx.scene.input
Fields in javafx.scene.input with type parameters of type InputMethodEvent Modifier and Type Field 描述 static EventType<InputMethodEvent>
InputMethodEvent. ANY
所有输入法事件类型的公共超类型。static EventType<InputMethodEvent>
InputMethodEvent. INPUT_METHOD_TEXT_CHANGED
InputMethodEvent唯一有效的EventType。Methods in javafx.scene.input that return InputMethodEvent Modifier and Type 方法 描述 InputMethodEvent
InputMethodEvent. copyFor(Object newSource, EventTarget newTarget)
Methods in javafx.scene.input that return types with arguments of type InputMethodEvent Modifier and Type 方法 描述 EventType<InputMethodEvent>
InputMethodEvent. getEventType()
Constructor parameters in javafx.scene.input with type arguments of type InputMethodEvent Constructor 描述 InputMethodEvent(Object source, EventTarget target, EventType<InputMethodEvent> eventType, List<InputMethodTextRun> composed, String committed, int caretPosition)
构造新的InputMethodEvent事件。InputMethodEvent(EventType<InputMethodEvent> eventType, List<InputMethodTextRun> composed, String committed, int caretPosition)
Constructs new InputMethodEvent event with empty source and target.
-