HwndHost.WndProc(IntPtr, Int32, IntPtr, IntPtr, Boolean) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
在派生类中重写时,访问承载的子窗口的窗口进程(句柄)。
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
参数
- hwnd
-
IntPtr
nativeint
所承载的窗口的窗口句柄。
- msg
- Int32
引发操作的消息。
- wParam
-
IntPtr
nativeint
可能与处理消息有关的信息。 它通常用于存储小段信息,如标志。
- lParam
-
IntPtr
nativeint
可能与处理消息有关的信息。 它通常用于引用对象。
- handled
- Boolean
是否应将所得事件标记为已处理。
返回
IntPtr
nativeint
子窗口的窗口句柄。
- 属性
注解
重要
此类型或成员在 Internet 安全区域中不可用。
继承者说明
中 HwndHost 的基本实现不返回实际过程,但会作为防故障返回 IntPtr.Zero
。