Condividi tramite


Delegato PenInputPanelChangedEventHandler

Aggiornamento: novembre 2007

Rappresenta il metodo che gestisce l'evento PanelChanged di un oggetto PenInputPanel.

Spazio dei nomi:  Microsoft.Ink
Assembly:  Microsoft.Ink (in Microsoft.Ink.dll)

Sintassi

'Dichiarazione
Public Delegate Sub PenInputPanelChangedEventHandler ( _
    sender As Object, _
    e As PenInputPanelChangedEventArgs _
)
'Utilizzo
Dim instance As New PenInputPanelChangedEventHandler(AddressOf HandlerMethod)
public delegate void PenInputPanelChangedEventHandler(
    Object sender,
    PenInputPanelChangedEventArgs e
)
public delegate void PenInputPanelChangedEventHandler(
    Object^ sender, 
    PenInputPanelChangedEventArgs^ e
)
/** @delegate */
public delegate void PenInputPanelChangedEventHandler(
    Object sender,
    PenInputPanelChangedEventArgs e
)
JScript non supporta i delegati.

Parametri

Note

Quando si crea un oggetto PenInputPanel, il pannello PanelType è il pannello predefinito. Se il pannello viene modificato impostando la proprietà CurrentPanel prima che il pannello input penna diventi attivo per la prima volta, si verifica un evento PanelChanged.

Esempi

In questo esempio C# viene creato un oggetto PenInputPanel, thePenInputPanel, che viene associato a un controllo InkEdit, theInkEdit. Nell'esempio viene quindi aggiunto un gestore dell'evento PanelChanged a thePenInputPanel. Il gestore dell'evento PanelChanged imposta il testo del controllo InkEdit associato su una frase contenente il nuovo tipo di pannello.

[C#]

//...

// Delcare the PenInputPanel object
PenInputPanel thePenInputPanel;

public Form1()
{
    // Required for Windows Form Designer support
    InitializeComponent();

    // Create and attach the new PenInputPanel to an InkEdit control.
    thePenInputPanel = new PenInputPanel(theInkEdit);

    // Add a PanelChanged event handler
    thePenInputPanel.PanelChanged +=
        new PenInputPanelChangedEventHandler(PanelChanged_Event);
}

//...

public void PanelChanged_Event(object sender,
 PenInputPanelChangedEventArgs e)
{
    // Make sure the object that generated
    // the event is a PenInputPanel object
    if (sender is PenInputPanel)
    {
        PenInputPanel theSenderPanel = (PenInputPanel)sender;

        theSenderPanel.AttachedEditControl.Text = "The panel has changed to ";
        theSenderPanel.AttachedEditControl.Text += e.NewPanelType.ToString();
    }
}

In questo esempio Microsoft® Visual Basic® .NET viene creato un oggetto PenInputPanel, thePenInputPanel, che viene associato a un controllo InkEdit, theInkEdit. Nell'esempio viene quindi aggiunto un gestore dell'evento PanelChanged a thePenInputPanel. Il gestore dell'evento PanelChanged imposta il testo del controllo InkEdit associato su una frase contenente il nuovo tipo di pannello.

[Visual Basic]

'...

' Declare the PenInputPanel object
Dim thePenInputPanel As PenInputPanel

Public Sub New()
    MyBase.New()

    'This call is required by the Windows Form Designer.
    InitializeComponent()

    ' Create and attach the new PenInputPanel to an InkEdit control.
    thePenInputPanel = New PenInputPanel(theInkEdit)

   ' Add a PanelChanged event handler
   AddHandler thePenInputPanel.PanelChanged, AddressOf PanelChanged_Event
End Sub 'New

'...

Public Sub PanelChanged_Event(ByVal sender As Object, ByVal e As _
                              PenInputPanelChangedEventArgs)
    ' Make sure the object that generated
    ' the event is a PenInputPanel object
    If TypeOf sender Is PenInputPanel Then
        Dim theSenderPanel As PenInputPanel = CType(sender, PenInputPanel)

        theSenderPanel.AttachedEditControl.Text = "The panel has changed to "
        theSenderPanel.AttachedEditControl.Text += e.NewPanelType.ToString
    End If
End Sub 'PanelChanged_Event

Piattaforme

Windows Vista

.NET Framework e .NET Compact Framework non supportano tutte le versioni di ciascuna piattaforma. Per un elenco delle versioni supportate, vedere Requisiti di sistema di .NET Framework.

Informazioni sulla versione

.NET Framework

Supportato in: 3.0

Vedere anche

Riferimenti

Spazio dei nomi Microsoft.Ink

PenInputPanel.OnPanelChanged