跳转到内容

UIEventType

此内容尚不支持你的语言。

const UIEventType: object

Defined in: ui/core/events.ts:27

Common UI event types. Event type strings are open — users may emit any string they like (e.g. 'item_selected' from a ListView). These constants document the standard set emitted by built-in widgets.

readonly Blur: "blur" = 'blur'

readonly Change: "change" = 'change'

readonly Click: "click" = 'click'

readonly Deselect: "deselect" = 'deselect'

readonly DragEnd: "drag_end" = 'drag_end'

readonly DragMove: "drag_move" = 'drag_move'

readonly DragStart: "drag_start" = 'drag_start'

readonly Focus: "focus" = 'focus'

readonly HoverEnter: "hover_enter" = 'hover_enter'

readonly HoverExit: "hover_exit" = 'hover_exit'

readonly Press: "press" = 'press'

readonly Release: "release" = 'release'

readonly Scroll: "scroll" = 'scroll'

readonly Select: "select" = 'select'

readonly Submit: "submit" = 'submit'