Message.Create(IntPtr, Int32, IntPtr, IntPtr) Metodo

Definizione

Crea un nuovo oggetto Message.

public:
 static System::Windows::Forms::Message Create(IntPtr hWnd, int msg, IntPtr wparam, IntPtr lparam);
public static System.Windows.Forms.Message Create (IntPtr hWnd, int msg, IntPtr wparam, IntPtr lparam);
static member Create : nativeint * int * nativeint * nativeint -> System.Windows.Forms.Message
Public Shared Function Create (hWnd As IntPtr, msg As Integer, wparam As IntPtr, lparam As IntPtr) As Message

Parametri

hWnd
IntPtr

nativeint

Handle di finestra cui è destinato il messaggio.

msg
Int32

ID del messaggio.

wparam
IntPtr

nativeint

Campo wparam del messaggio.

lparam
IntPtr

nativeint

Campo lparam del messaggio.

Restituisce

Message

Struttura Message che rappresenta il messaggio creato.

Commenti

Utilizzare il metodo per creare un Message oggetto per eseguire il Create wrapping di un messaggio inviato da Windows.

Si applica a