Message.Create(IntPtr, Int32, IntPtr, IntPtr) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
새 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
매개 변수
- hWnd
-
IntPtr
nativeint
메시지의 창 핸들입니다.
- msg
- Int32
메시지 ID입니다.
- wparam
-
IntPtr
nativeint
메시지 wparam
필드입니다.
- lparam
-
IntPtr
nativeint
메시지 lparam
필드입니다.
반환
만들어진 메시지를 나타내는 Message입니다.
설명
이 메서드를 Create 사용하여 Windows에서 Message 보낸 메시지를 래핑할 수 있습니다.