InkOverlay-Konstruktor (Control, Boolean)
Initialisiert eine neue Instanz der InkOverlay-Klasse, fügt sie an das angegebene Steuerelement an und bestimmt, ob die Maus zur Eingabe verwendet werden soll.
Namespace: Microsoft.Ink
Assembly: Microsoft.Ink (in Microsoft.Ink.dll)
Syntax
'Declaration
Public Sub New ( _
attachedControl As Control, _
useMouseForInput As Boolean _
)
'Usage
Dim attachedControl As Control
Dim useMouseForInput As Boolean
Dim instance As New InkOverlay(attachedControl, _
useMouseForInput)
public InkOverlay(
Control attachedControl,
bool useMouseForInput
)
public:
InkOverlay(
Control^ attachedControl,
bool useMouseForInput
)
public InkOverlay(
Control attachedControl,
boolean useMouseForInput
)
public function InkOverlay(
attachedControl : Control,
useMouseForInput : boolean
)
Parameter
- attachedControl
Typ: System.Windows.Forms.Control
Das Steuerelement, an das das InkOverlay-Objekt angefügt ist.
- useMouseForInput
Typ: System.Boolean
Legen Sie den Wert true fest, um die Maus für die Tabletteingabe zu verwenden, andernfalls false.
Beispiele
In diesem C#-Beispiel wird eine neue Instanz des InkOverlay-Objekts theInkOverlay initialisiert, dem Formular zugeordnet, festgelegt, dass die Maus nicht zur Eingabe verwendet werden soll, und dann die Instanz 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, false);
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 initialisiert, dem Formular zugeordnet, festgelegt, dass die Maus nicht zur Eingabe verwendet werden soll, und dann die Instanz 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, False)
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