Condividi tramite


Evento InkPicture.SelectionChanged

Aggiornamento: novembre 2007

Si verifica quando la selezione dell'input penna all'interno del controllo InkPicture è stata cambiata, ad esempio tramite modifiche apportate all'interfaccia utente, procedure di taglia e incolla o la proprietà Selection.

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

Sintassi

'Dichiarazione
Public Event SelectionChanged As InkOverlaySelectionChangedEventHandler
'Utilizzo
Dim instance As InkPicture
Dim handler As InkOverlaySelectionChangedEventHandler

AddHandler instance.SelectionChanged, handler
public event InkOverlaySelectionChangedEventHandler SelectionChanged
public:
 event InkOverlaySelectionChangedEventHandler^ SelectionChanged {
    void add (InkOverlaySelectionChangedEventHandler^ value);
    void remove (InkOverlaySelectionChangedEventHandler^ value);
}
/** @event */
public void add_SelectionChanged (InkOverlaySelectionChangedEventHandler value)
/** @event */
public void remove_SelectionChanged (InkOverlaySelectionChangedEventHandler value)
JScript non supporta gli eventi.

Note

Il gestore eventi riceve un argomento di tipo EventArgs che non contiene dati.

Esempi

In questo esempio, il gestore eventi SelectionChanged visualizza il numero corrente di oggetti Stroke selezionati.

Private Sub mInkObject_SelectionChanged(ByVal sender As Object, ByVal e As EventArgs)
    ' mInkObject can be InkOverlay or InkPicture
    statusLabelSelectedStrokeCount.Text = mInkObject.Selection.Count.ToString()
End Sub
private void mInkObject_SelectionChanged(object sender, EventArgs e)
{
    // mInkObject can be InkOverlay or InkPicture
    statusLabelSelectedStrokeCount.Text = mInkObject.Selection.Count.ToString();
}

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

InkPicture Classe

Membri InkPicture

Spazio dei nomi Microsoft.Ink

InkPicture.Selection

InkPicture.SelectionChanging

Altre risorse

System.EventArgs