Partager via


InkCollector, constructeur (Control, Tablet)

Mise à jour : November 2007

Crée un objet InkCollector et l'attache à un contrôle spécifié sur un Tablet PC spécifié.

Espace de noms :  Microsoft.Ink
Assembly :  Microsoft.Ink (dans Microsoft.Ink.dll)

Syntaxe

'Déclaration
Public Sub New ( _
    attachedControl As Control, _
    tablet As Tablet _
)
'Utilisation
Dim attachedControl As Control
Dim tablet As Tablet

Dim instance As New InkCollector(attachedControl, _
    tablet)
public InkCollector(
    Control attachedControl,
    Tablet tablet
)
public:
InkCollector(
    Control^ attachedControl, 
    Tablet^ tablet
)
public InkCollector(
    Control attachedControl,
    Tablet tablet
)
public function InkCollector(
    attachedControl : Control, 
    tablet : Tablet
)

Paramètres

Notes

Selon le Tablet choisi, vous pouvez utiliser le stylet ou la souris pour la saisie.

Exemples

Cet exemple C# initialise une nouvelle instance de l'objet InkCollector, theInkCollector, l'associe au handle de fenêtre du formulaire et au Tablet par défaut, puis l'active.

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(this, allTablets.DefaultTablet);
 theInkCollector.Enabled = true;
}

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

Cet exemple Microsoft Visual Basic .NET initialise une nouvelle instance de l'objet InkCollector, theInkCollector, l'associe au handle de fenêtre du formulaire et au Tablet par défaut, puis l'active.

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(Me, allTablets.DefaultTablet)
 theInkCollector.Enabled = True
End Sub

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

Plateformes

Windows Vista

Le .NET Framework et le .NET Compact Framework ne prennent pas en charge toutes les versions de chaque plateforme. Pour obtenir la liste des versions prises en charge, consultez Configuration requise du .NET Framework.

Informations de version

.NET Framework

Pris en charge dans : 3.0

Voir aussi

Référence

InkCollector, classe

Membres InkCollector

InkCollector, surcharge

Microsoft.Ink, espace de noms

InkCollector