InkCollectorSystemGestureEventArgs.Id 属性

获取系统笔势 的值。

命名空间:  Microsoft.Ink
程序集:  Microsoft.Ink(在 Microsoft.Ink.dll 中)

语法

声明
Public ReadOnly Property Id As SystemGesture
用法
Dim instance As InkCollectorSystemGestureEventArgs
Dim value As SystemGesture

value = instance.Id
public SystemGesture Id { get; }
public:
property SystemGesture Id {
    SystemGesture get ();
}
/** @property */
public SystemGesture get_Id()
public function get Id () : SystemGesture

属性值

类型:Microsoft.Ink.SystemGesture
系统笔势的值。

备注

备注

SystemGesture 对象的标识符不随时间而改变,这意味着它永远不会更改。

因为每个系统笔势都作为 SystemGesture 枚举中的值存在,因此该值被用作笔势的 ID。

示例

在此示例中,InkCollectorSystemGestureEventHandler 实例检查传入 InkCollectorSystemGestureEventArgs 对象的数据。如果墨迹画布左上角发生 DoubleTap 系统笔势,则擦除墨迹画布上的所有笔画。

Private Sub mInkObject_SystemGesture(ByVal sender As Object, ByVal e As InkCollectorSystemGestureEventArgs)
    If (e.Id = SystemGesture.DoubleTap And e.Point.X <= 106 And e.Point.Y <= 106) Then
        EraseAllStrokes()
    End If
End Sub
private void mInkObject_SystemGesture(object sender, InkCollectorSystemGestureEventArgs e)
{
    if (e.Id == SystemGesture.DoubleTap && e.Point.X <= 106 && e.Point.Y <= 106)
    {
        EraseAllStrokes();
    }
}

平台

Windows Vista

.NET Framework 和 .NET Compact Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求

版本信息

.NET Framework

受以下版本支持:3.0

另请参见

参考

InkCollectorSystemGestureEventArgs 类

InkCollectorSystemGestureEventArgs 成员

Microsoft.Ink 命名空间

InkCollector.SystemGesture