InkOverlay, constructeur (IntPtr, Tablet)
Mise à jour : November 2007
Initialise une nouvelle instance de la classe InkOverlay et l'attache au handle de fenêtre spécifié sur un objet Tablet spécifié.
Espace de noms : Microsoft.Ink
Assembly : Microsoft.Ink (dans Microsoft.Ink.dll)
Syntaxe
'Déclaration
Public Sub New ( _
handle As IntPtr, _
tablet As Tablet _
)
'Utilisation
Dim handle As IntPtr
Dim tablet As Tablet
Dim instance As New InkOverlay(handle, _
tablet)
public InkOverlay(
IntPtr handle,
Tablet tablet
)
public:
InkOverlay(
IntPtr handle,
Tablet^ tablet
)
public InkOverlay(
IntPtr handle,
Tablet tablet
)
public function InkOverlay(
handle : IntPtr,
tablet : Tablet
)
Paramètres
- handle
Type : System.IntPtr
Handle de la fenêtre à laquelle l'objet InkOverlay est attaché.
- tablet
Type : Microsoft.Ink.Tablet
Objet Tablet auquel la nouvelle fenêtre de l'objet InkOverlay est attachée.
Notes
Le nouveau InkOverlay peut collecter l'entrée manuscrite sur la surface de fenêtre spécifiée.
Outre le stylet, la souris peut être utilisée pour la saisie.
Note de sécurité : |
---|
Lors de l'utilisation en situation de confiance partielle, ce constructeur requiert l'autorisation SecurityPermissionFlag.UnmanagedCode (page pouvant être en anglais), en plus des autorisations requises par InkOverlay. Pour plus d'informations, consultez Security and Trust. |
Exemples
Cet exemple C# initialise une nouvelle instance de l'objet InkOverlay, theInkOverlay, 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
{
InkOverlay theInkOverlay;
public MinimumInkApp()
{
// Initialize the form.
this.Text = "Minimum Ink Application";
// Create and enable theInkOverlay.
Tablets allTablets = new Tablets();
theInkOverlay = new InkOverlay(Handle, allTablets.DefaultTablet);
theInkOverlay.Enabled = true;
}
public static void Main()
{
Application.Run(new MinimumInkApp());
}
}
Cet exemple de code Microsoft Visual Basic .NET initialise une nouvelle instance de l'objet InkOverlay, theInkOverlay, 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 theInkOverlay As InkOverlay
Public Sub New()
MyBase.New()
'Initialize the form.
Me.Text = "Minimum Ink Application"
'Create and enable theInkOverlay.
Dim allTablets As New Tablets()
theInkOverlay = New InkOverlay(Handle, allTablets.DefaultTablet)
theInkOverlay.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