InkCollector 构造函数 (Control)
初始化 InkCollector 类的新实例,并使一个控件与它关联。
命名空间: Microsoft.Ink
程序集: Microsoft.Ink(在 Microsoft.Ink.dll 中)
语法
声明
Public Sub New ( _
attachedControl As Control _
)
用法
Dim attachedControl As Control
Dim instance As New InkCollector(attachedControl)
public InkCollector(
Control attachedControl
)
public:
InkCollector(
Control^ attachedControl
)
public InkCollector(
Control attachedControl
)
public function InkCollector(
attachedControl : Control
)
参数
- attachedControl
类型:System.Windows.Forms.Control
要附加 InkCollector 对象的控件。
备注
除了笔以外,也可以用鼠标执行输入。
示例
此 C# 示例初始化 InkCollector 对象的新实例 theInkCollector,并使它与窗体关联,然后启用它。
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.
theInkCollector = new InkCollector(this);
theInkCollector.Enabled = true;
}
public static void Main()
{
Application.Run(new MinimumInkApp());
}
}
此 Microsoft Visual Basic .NET 示例初始化 InkCollector 对象的新实例 theInkCollector,并使它与窗体关联,然后启用它。
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.
theInkCollector = New InkCollector(Me)
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