To separate your event logic from your UI code, use a manipulator to handle events. Manipulators are state machines that handle user interaction with UI elements. They store, register, and unregister event callbacks. A manipulator streamlines setting up that user interaction, so you don’t have to handle each callback one by one. To handle events, use or inherit from one of the manipulators that UI Toolkit supports.
To create and use a manipulator:
The following table lists the supported manipulator classes:
マニピュレーター | 継承 | 説明 |
---|---|---|
Manipulator |
提供されるすべてのマニピュレーターの基本クラスです。 | |
KeyboardNavigationManipulator |
Manipulator |
デバイス固有の入力イベントを、キーボードによるより高度なナビゲーション操作に変換する処理を行います。 |
MouseManipulator |
Manipulator |
マウス入力を処理します。起動時フィルターのリストを持っています。 |
ContextualMenuManipulator |
MouseManipulator |
ユーザーがマウスの右ボタンをクリックするか、キーボードのメニューキーを押すと、コンテキストメニューが表示されます。 |
PointerManipulator |
MouseManipulator |
ポインターの入力を処理します。起動時フィルターのリストを持っています。 |
Clickable |
PointerManipulator |
Tracks mouse events on an element, and identifies when a click occurs, which is both a pointer press and release on the same element. |
The following examples demonstrate how to use manipulators to handle events. They do the following:
PointerManipulators
class, which handles mouse input.activators
list to specify the conditions that activate the manipulator. For example, to activate the manipulator when the user clicks the left mouse button, add
ManipulatorActivationFilter
to the activators
list with the button
field set to MouseButton.LeftMouse
.target
property to access the element that the manipulator is attached to.RegisterCallbacksOnTarget
and UnregisterCallbacksFromTarget
methods to register and unregister the event callbacks.The following example creates a manipulator that moves an element when you click and drag it:
[!code-cs[(Modules/UIElements/Tests/UIElementsExamples/Assets/ui-toolkit-manual-code-examples/manipulator/ExampleDragger.cs)]
The following example creates a manipulator that resizes an element when you drag it:
[!code-cs[(Modules/UIElements/Tests/UIElementsExamples/Assets/ui-toolkit-manual-code-examples/manipulator/ExampleResizer.cs)]
To add a manipulator to an element, use the AddManipulator
method. To remove a manipulator from an element, use the RemoveManipulator
method.
The following example adds and removes the ExampleDragger
to a VisualElement
:
// Create a VisualElement.
var myElement = new VisualElement();
// Add manipulators to the VisualElement.
myElement.AddManipulator(new ExampleDragger());
// Remove manipulators from the VisualElement.
myElement.RemoveManipulator<ExampleDragger>();
The following example adds the ExampleResizer
to a VisualElement
:
var box = new VisualElement()
{
style =
{
left = 100,
top = 100,
width = 100,
height = 100,
backgroundColor = Color.red
},
pickingMode = PickingMode.Position,
};
box.AddManipulator(new ExampleResizer());