Experimental: this API is experimental and might be changed or removed in the future.

ContextualMenuPopulateEvent

class in UnityEngine.Experimental.UIElements

/

继承自:Experimental.UIElements.MouseEventBase_1

切换到手册

描述

需要用菜单项填充上下文菜单时发送的事件。

变量

menu要填充的菜单。

构造函数

ContextualMenuPopulateEvent构造函数。

受保护的函数

Init将事件成员重置为其初始值。

静态函数

GetPooled从事件池中检索一个事件。使用此方法检索鼠标事件并初始化该事件,而不是创建新的鼠标事件。

继承的成员

变量

bubbles返回此事件类型是否在事件传播路径中冒泡。
capturable返回此事件类型在 Capture 阶段是否在事件传播路径中下降。
currentTarget事件的当前目标。当前路径是传播路径中目前正在为其执行事件处理程序的元素。
dispatch返回目前是否正在将事件分发给视觉元素。正在分发的事件不能重新分发。如果需要以递归方式重新分发事件,应使用副本。
flags事件的标志。
imguiEvent此事件源代码中的 IMGUIEvent。可以为 null,因为不是所有事件都是由 IMGUI 生成的。
isDefaultPrevented如果不应为此事件执行默认操作,则返回 true。
isImmediatePropagationStopped如果已经为此事件调用了 StopImmediatePropagation(),则返回 true。
isPropagationStopped如果已经为此事件调用了 StopPropagation(),则返回 true。
originalMousePositionIMGUI 事件在转换为本地元素坐标之前的原始鼠标位置。
propagationPhase当前传播阶段。
target此事件的目标。这是收到事件的视觉元素。与 currentTarget 不同,当事件沿传播路径发送给元素时,目标不会更改。
timestamp事件的创建时间。
altKey如果按下 Alt 键,则返回 true。
button表示按下的鼠标按钮的整数。0 为左侧,1 为右侧,2 为中间。
clickCount单击次数。
commandKey如果按下 Windows/Command 键,则返回 true。
ctrlKey如果按下 Control 键,则返回 true。
currentTarget事件的当前目标。当前路径是传播路径中目前正在为其执行事件处理程序的元素。
localMousePosition当前目标坐标系中的鼠标位置。
modifiers标志集,用于保存所按修改键(Alt、Control、Shift、Windows/Command)。
mouseDelta上次鼠标事件与这次鼠标事件之间的鼠标位置差别。
mousePosition屏幕坐标系中的鼠标位置。
shiftKey如果按下 Shift 键,则返回 true。

公共函数

DisposeIDisposable 实现。
GetEventTypeId获取此事件实例的类型 ID。
PreventDefault调用此函数可阻止为此事件执行默认操作。
StopImmediatePropagation立即停止此事件的传播。事件将不会发送给当前目标的任何其他事件处理程序或传播路径中的任何其他元素。
StopPropagation停止此事件的传播。事件将不会发送给传播路径中的任何其他元素。当前目标的其他事件处理程序将执行。
DisposeIDispose 实现。
GetEventTypeId获取此事件实例的类型 ID。

静态函数

RegisterEventType将事件类注册到事件类型系统。
GetPooledGet an event from the event pool. Use this function instead of creating new events. Events obtained from this method should be released back to the pool using ReleaseEvent().
ReleasePooled释放从 GetPooled() 获取的事件。
TypeId获取此事件实例的类型 ID。
GetPooledGet an event from the event pool and initialize it with the given values. Use this function instead of creating new events. Events obtained from this method should be released back to the pool using ReleaseEvent().