InkCollectorSystemGestureEventArgs.Cursor 属性

获取生成 SystemGesture 事件的 Cursor 对象。

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

语法

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

value = instance.Cursor
public Cursor Cursor { get; }
public:
property Cursor^ Cursor {
    Cursor^ get ();
}
/** @property */
public Cursor get_Cursor()
public function get Cursor () : Cursor

属性值

类型:Microsoft.Ink.Cursor
生成 SystemGesture 事件的对象。

备注

请不要混淆 Microsoft.Ink.Cursor 类和 Cursor 类。Microsoft.Ink.Cursor 表示 Tablet 指针和选择设备(通常是笔)的常规信息,而 Cursor 表示用于绘制鼠标指针的图像。

示例

此 C# 示例演示 SystemGesture 事件处理程序,该事件处理程序将 Cursor 名称放置到 TextBox (theTextBox) 中。

private void theInkCollector_SystemGesture(object sender, InkCollectorSystemGestureEventArgs e)
{
  theTextBox.Text = e.Cursor.ToString();
}

此 Microsoft(R) Visual Basic(R) .NET 示例演示 SystemGesture 事件处理程序,该事件处理程序将 Cursor 名称放置到 TextBox (theTextBox) 中。

Private Sub theInkCollector_SystemGesture(ByVal sender As Object, ByVal e As InkCollectorSystemGestureEventArgs) _
Handles theInkCollector.SystemGesture
  theTextBox.Text = e.Cursor.ToString()
End Sub

平台

Windows Vista

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

版本信息

.NET Framework

受以下版本支持:3.0

另请参见

参考

InkCollectorSystemGestureEventArgs 类

InkCollectorSystemGestureEventArgs 成员

Microsoft.Ink 命名空间

InkCollector.SystemGesture

InkCollector.Gesture