HwndSourceHook Delegato

Definizione

Rappresenta il metodo che gestisce i messaggi di finestra in Win32.

public delegate IntPtr HwndSourceHook(IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam, bool % handled);
public delegate IntPtr HwndSourceHook(IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam, ref bool handled);
type HwndSourceHook = delegate of nativeint * int * nativeint * nativeint * bool -> nativeint
Public Delegate Function HwndSourceHook(hwnd As IntPtr, msg As Integer, wParam As IntPtr, lParam As IntPtr, ByRef handled As Boolean) As IntPtr 

Parametri

hwnd
IntPtr

nativeint

Handle di finestra.

msg
Int32

ID del messaggio.

wParam
IntPtr

nativeint

Valore wParam del messaggio.

lParam
IntPtr

nativeint

Valore lParam del messaggio.

handled
Boolean

Valore che indica se il messaggio è stato gestito. Impostare il valore su true se il messaggio è stato gestito; in caso contrario false.

Valore restituito

IntPtr

nativeint

Il valore adatto restituito dipende dal messaggio particolare. Vedere i dettagli della documentazione del messaggio per il messaggio Win32 gestito.

Commenti

Utilizzare il metodo per registrare questo AddHook gestore per ricevere messaggi.

Metodi di estensione

GetMethodInfo(Delegate)

Ottiene un oggetto che rappresenta il metodo rappresentato dal delegato specificato.

Si applica a

Vedi anche