Freigeben über


InkOverlay-Konstruktor (Control)

Initialisiert eine neue Instanz der InkOverlay-Klasse und ordnet diese einem Steuerelement zu.

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

Syntax

'Declaration
Public Sub New ( _
    attachedControl As Control _
)
'Usage
Dim attachedControl As Control

Dim instance As New InkOverlay(attachedControl)
public InkOverlay(
    Control attachedControl
)
public:
InkOverlay(
    Control^ attachedControl
)
public InkOverlay(
    Control attachedControl
)
public function InkOverlay(
    attachedControl : Control
)

Parameter

Beispiele

In diesem C#-Beispiel wird die neue Instanz des InkOverlay-Objekts theInkOverlay erstellt, dem Formular zugeordnet und dann aktiviert.

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.
        theInkOverlay = new InkOverlay(this);
        theInkOverlay.Enabled = true;
    }

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

In diesem Microsoft Visual Basic .NET-Beispiel wird eine neue Instanz des InkOverlay-Objekts theInkOverlay erstellt, dem Formular zugeordnet und dann aktiviert.

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.
        theInkOverlay = New InkOverlay(Me)
        theInkOverlay.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

InkOverlay-Klasse

InkOverlay-Member

InkOverlay-Überladung

Microsoft.Ink-Namespace

InkOverlay