Partager via


InkEdit, constructeur

Mise à jour : November 2007

Initialise une nouvelle instance du contrôle InkEdit.

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

Syntaxe

'Déclaration
Public Sub New
'Utilisation

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

Exemples

Cet exemple C# crée un contrôle InkEdit, theInkEdit, dans un contrôle Windows Form.

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

namespace InkEditSample
{
    class InkEditSample : System.Windows.Forms.Form
    {
        private Microsoft.Ink.InkEdit theInkEdit;

        public InkEditSample()
        {
            theInkEdit = new InkEdit();
            theInkEdit.Parent = this;
            theInkEdit.Dock = DockStyle.Fill;
            theInkEdit.UseMouseForInput = true;
            theInkEdit.Enabled = true;
        }

        [STAThread]
        public static void Main()
        {
            Application.Run(new InkEditSample());
        }
    }
}

Cet exemple Microsoft® Visual Basic® .NET crée un contrôle InkEdit, theInkEdit, dans un contrôle Windows Form.

Imports System
Imports System.Windows.Forms
Imports Microsoft.Ink

Public Class InkEditSample
    Inherits System.Windows.Forms.Form

    Private theInkEdit As Microsoft.Ink.InkEdit

    Public Sub New()
        theInkEdit = New Microsoft.Ink.InkEdit()
        theInkEdit.Parent = Me
        theInkEdit.Dock = DockStyle.Fill
        theInkEdit.UseMouseForInput = True
        theInkEdit.Enabled = True
    End Sub

    <STAThread()> Shared Sub Main()
        Application.Run(New InkEditSample())
    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

InkEdit, classe

Membres InkEdit

Microsoft.Ink, espace de noms