StylusEventHandler 委托

定义

表示处理实现 IInputElement 接口的类的触笔事件的方法。

public delegate void StylusEventHandler(System::Object ^ sender, StylusEventArgs ^ e);
public delegate void StylusEventHandler(object sender, StylusEventArgs e);
type StylusEventHandler = delegate of obj * StylusEventArgs -> unit
Public Delegate Sub StylusEventHandler(sender As Object, e As StylusEventArgs)

参数

sender
Object

事件源。

e
StylusEventArgs

事件数据。

示例

下面的示例演示如何使用 StylusEventHandler 委托为 StylusDown 事件指定处理程序。

button1.StylusDown += new StylusDownEventHandler(button1_StylusDown);
AddHandler button1.StylusDown, AddressOf button1_StylusDown

扩展方法

GetMethodInfo(Delegate)

获取指示指定委托表示的方法的对象。

适用于