Freigeben über


InkCollector-Konstruktor

Initialisiert eine neue Instanz der InkCollector-Klasse, die noch keinem Fenster zugeordnet ist.

Namespace:  Microsoft.Ink
Assembly:  Microsoft.Ink (in Microsoft.Ink.dll)

Syntax

'Declaration
Public Sub New
'Usage

Dim instance As New InkCollector()
public InkCollector()
public:
InkCollector()
public InkCollector()
public function InkCollector()

Hinweise

Vor dem Erfassen von Freihandeingaben muss eine Anwendung dem InkCollector-Objekt ein Fensterhandle zuordnen. Um ein InkCollector-Objekt mit einem zugeordneten Fensterhandle zu erstellen, rufen Sie den InkCollector(IntPtr)-Konstruktor auf.

Beispiele

In diesem C#-Beispiel wird die neue Instanz des InkCollector-Objekts theInkCollector erstellt, dem Fensterhandle des Formulars zugeordnet und dann aktiviert.

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();
        theInkCollector.Handle = Handle;
        theInkCollector.Enabled = true;
    }

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

In diesem Microsoft® Visual Basic® .NET-Beispiel wird die neue Instanz des InkCollector-Objekts theInkCollector erstellt, dem Fensterhandle des Formulars zugeordnet und dann aktiviert.

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()
        theInkCollector.Handle = Handle
        theInkCollector.Enabled = True
    End Sub

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

Plattformen

Windows Vista

.NET Framework und .NET Compact Framework unterstützen nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen für .NET Framework.

Versionsinformationen

.NET Framework

Unterstützt in: 3.0

Siehe auch

Referenz

InkCollector-Klasse

InkCollector-Member

InkCollector-Überladung

Microsoft.Ink-Namespace

InkCollector