UICuesEventHandler 代理人
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
表示將會處理 ChangeUICues 的 Control 事件的方法。
public delegate void UICuesEventHandler(System::Object ^ sender, UICuesEventArgs ^ e);
public delegate void UICuesEventHandler(object sender, UICuesEventArgs e);
public delegate void UICuesEventHandler(object? sender, UICuesEventArgs e);
type UICuesEventHandler = delegate of obj * UICuesEventArgs -> unit
Public Delegate Sub UICuesEventHandler(sender As Object, e As UICuesEventArgs)
參數
- sender
- Object
事件的來源。
UICuesEventArgs,其中包含事件資料。
備註
建立 UICuesEventHandler 委派時,必須識別處理事件的方法。 若要使事件與您的事件處理常式產生關聯,請將委派的執行個體 (Instance) 加入至事件。 除非您移除委派,否則每當事件發生時就會呼叫事件處理常式。 如需使用委派處理事件的詳細資訊,請參閱 處理和引發事件。
擴充方法
GetMethodInfo(Delegate) |
取得表示特定委派所代表之方法的物件。 |