HwndHost.WndProc(IntPtr, Int32, IntPtr, IntPtr, Boolean) Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Quando substituído em uma classe derivada, acessa o processo de janela (identificador) da janela filho hospedada.
protected:
virtual IntPtr WndProc(IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam, bool % handled);
[System.Security.SecurityCritical]
protected virtual IntPtr WndProc (IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam, ref bool handled);
protected virtual IntPtr WndProc (IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam, ref bool handled);
[<System.Security.SecurityCritical>]
abstract member WndProc : nativeint * int * nativeint * nativeint * bool -> nativeint
override this.WndProc : nativeint * int * nativeint * nativeint * bool -> nativeint
abstract member WndProc : nativeint * int * nativeint * nativeint * bool -> nativeint
override this.WndProc : nativeint * int * nativeint * nativeint * bool -> nativeint
Protected Overridable Function WndProc (hwnd As IntPtr, msg As Integer, wParam As IntPtr, lParam As IntPtr, ByRef handled As Boolean) As IntPtr
Parâmetros
- hwnd
-
IntPtr
nativeint
O identificador de janela da janela hospedada.
- msg
- Int32
A mensagem a ser tratada.
- wParam
-
IntPtr
nativeint
Informações que podem ser relevantes para tratar a mensagem. Isso normalmente é usado para armazenar pequenas informações, como sinalizadores.
- lParam
-
IntPtr
nativeint
Informações que podem ser relevantes para tratar a mensagem. Isso normalmente é usado para referenciar um objeto.
- handled
- Boolean
Se os eventos resultantes devem ser marcados como tratados.
Retornos
nativeint
O identificador de janela da janela filho.
- Atributos
Comentários
Importante
Esse tipo ou membro não está disponível na zona de segurança da Internet.
Notas aos Herdeiros
A implementação base no HwndHost não retorna um processo prático, mas retornará IntPtr.Zero
como um failsafe.