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

CallbackEventHandler.RegisterCallback

切换到手册
public void RegisterCallback (EventCallback<TEventType> callback, Experimental.UIElements.TrickleDown useTrickleDown);
public void RegisterCallback (EventCallback<TEventType,TUserArgsType> callback, TUserArgsType userArgs, Experimental.UIElements.TrickleDown useTrickleDown);

参数

callback要添加的事件处理程序。
useTrickleDownBy default, this callback is called during the BubbleUp phase. Pass TrickleDown.TrickleDown to call this callback during the TrickleDown phase.
userArgs要传递给回调的数据。

描述

Adds an event handler to the instance. If the event handler has already been registered for the same phase (either TrickleDown or BubbleUp) then this method has no effect.