InkCollector 构造函数 (IntPtr, Tablet)

创建 InkCollector 对象,并将它附加到在指定的 Tablet 上的指定窗口句柄。

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

语法

声明
Public Sub New ( _
    handle As IntPtr, _
    tablet As Tablet _
)
用法
Dim handle As IntPtr
Dim tablet As Tablet

Dim instance As New InkCollector(handle, _
    tablet)
public InkCollector(
    IntPtr handle,
    Tablet tablet
)
public:
InkCollector(
    IntPtr handle, 
    Tablet^ tablet
)
public InkCollector(
    IntPtr handle,
    Tablet tablet
)
public function InkCollector(
    handle : IntPtr, 
    tablet : Tablet
)

参数

备注

新创建的 InkCollector 对象可以在指定的窗口图面上收集墨迹。

取决于选择哪个 Tablet,笔或鼠标都可用于输入。

ms579205.alert_security(zh-cn,VS.90).gif安全说明:

如果在部分信任环境下使用,则除了 InkCollector 所需的权限以外,此构造函数还需要 SecurityPermissionFlag.UnmanagedCode 权限。有关更多信息,请参见Security And Trust

示例

此 C# 示例初始化 InkCollector 对象的新实例 theInkCollector,使它与窗体的窗口句柄和默认 Tablet 关联,然后启用它。

using System;
using System.Drawing;
using System.Windows.Forms;
using Microsoft.Ink;

class MinimumInkApp : System.Windows.Forms.Form
{
InkCollector theInkCollector;

public MinimumInkApp()
{
 // Initialize the form.
 this.Text = "Minimum Ink Application";

 // Create and enable theInkCollector.
 Tablets allTablets = new Tablets();
 theInkCollector = new InkCollector(Handle, allTablets.DefaultTablet);
 theInkCollector.Enabled = true;
}

public static void Main()
{
 Application.Run(new MinimumInkApp());
}
}

此 Microsoft Visual Basic .NET 示例初始化 InkCollector 对象的新实例 theInkCollector,使它与窗体的窗口句柄和默认 Tablet 关联,然后启用它。

Imports System.Windows.Forms
Imports Microsoft.Ink
Public Class MinimumInkApp
Inherits System.Windows.Forms.Form

Dim theInkCollector As InkCollector

Public Sub New()
 MyBase.New()
 'Initialize the form.
 Me.Text = "Minimum Ink Application"
 
 'Create and enable theInkCollector.
 Dim allTablets As New Tablets()
 theInkCollector = New InkCollector(Handle, allTablets.DefaultTablet)
 theInkCollector.Enabled = True
End Sub

Public Shared Sub Main()
 Application.Run(New MinimumInkApp())
End Sub
End Class

平台

Windows Vista

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

版本信息

.NET Framework

受以下版本支持:3.0

另请参见

参考

InkCollector 类

InkCollector 成员

InkCollector 重载

Microsoft.Ink 命名空间

InkCollector