Condividi tramite


Evento InkOverlay.Painting

Aggiornamento: novembre 2007

Si verifica prima che l'oggetto InkOverlay venga ridisegnato.

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

Sintassi

'Dichiarazione
Public Event Painting As InkOverlayPaintingEventHandler
'Utilizzo
Dim instance As InkOverlay
Dim handler As InkOverlayPaintingEventHandler

AddHandler instance.Painting, handler
public event InkOverlayPaintingEventHandler Painting
public:
 event InkOverlayPaintingEventHandler^ Painting {
    void add (InkOverlayPaintingEventHandler^ value);
    void remove (InkOverlayPaintingEventHandler^ value);
}
/** @event */
public void add_Painting (InkOverlayPaintingEventHandler value)
/** @event */
public void remove_Painting (InkOverlayPaintingEventHandler value)
JScript non supporta gli eventi.

Note

Il gestore eventi riceve un argomento di tipo InkOverlayPaintingEventArgs contenente i dati relativi a questo evento.

Quando si crea un delegato InkOverlayPaintingEventHandler, si identifica il metodo che gestisce l'evento. Per associare l'evento al gestore in uso, aggiungere all'evento un'istanza del delegato. Il gestore eventi viene chiamato ogni volta che si verifica l'evento, a meno che non si rimuova il delegato. Per motivi di prestazioni, l'interesse dell'evento predefinito è disattivato, ma viene attivato automaticamente se si aggiunge un gestore eventi.

Esempi

In questo esempio, il gestore eventi Painting viene utilizzato per disegnare uno sfondo con righe nell'area di disegno dell'input penna.

Private Sub mInkObject_Painting(ByVal sender As Object, ByVal e As InkOverlayPaintingEventArgs)
    Dim hBrush As Brush = New HatchBrush(HatchStyle.Horizontal, Color.LightGray, Color.White)
    e.Graphics.FillRectangle(hBrush, e.ClipRectangle)
End Sub
private void mInkObject_Painting(object sender, InkOverlayPaintingEventArgs e)
{
    Brush hBrush = new HatchBrush(HatchStyle.Horizontal, Color.LightGray, Color.White);
    e.Graphics.FillRectangle(hBrush, e.ClipRectangle);
}

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

InkOverlay Classe

Membri InkOverlay

Spazio dei nomi Microsoft.Ink

InkOverlayPaintingEventArgs

InkOverlay.Painted