ControlDesigner.WndProc 方法

处理 Windows 消息,并可以选择将其路由到控件。

**命名空间:**System.Windows.Forms.Design
**程序集:**System.Design(在 system.design.dll 中)

语法

声明
Protected Overridable Sub WndProc ( _
    ByRef m As Message _
)
用法
Dim m As Message

Me.WndProc(m)
protected virtual void WndProc (
    ref Message m
)
protected:
virtual void WndProc (
    Message% m
)
protected void WndProc (
    /** @ref */ Message m
)
JScript 不支持通过引用传递值类型参数。

参数

备注

为控件通常会收到的每条消息调用此方法。此方法允许设计器在选择将消息路由到控件前预先对其进行处理。

若要将消息发送给控件的 Control.WndProc 方法,请在控件设计器上调用 WndProc

提示

设计器会筛选消息,因此某些消息不会发送给控件。例如,鼠标消息将被设计器截获。如果这不是您需要的行为,请改为调用 DefWndProc

将 m 作为参数传递。另外,您还可以选择改变或创建一个新的 System.Windows.Forms.Message 以传递给此控件的方法。

下表显示了消息流。

不使用设计器

使用设计器

USER32

Control.WndProc

Control.DefWndProc

USER32

USER32

Control.Designer. WndProc

DefWndProc

Control.WndProc

Control.DefWndProc

USER32

设计器通过替换控件的 Control.WindowTarget 属性截获消息。通常,WindowTarget 指向包含在控件内的 NativeWindow。在设计时,设计器用它自己的窗口目标替换此窗口,并缓存原始值。

.NET Framework 安全性

  • 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见。

平台

Windows 98、Windows 2000 SP4、Windows Millennium Edition、Windows Server 2003、Windows XP Media Center Edition、Windows XP Professional x64 Edition、Windows XP SP2、Windows XP Starter Edition

.NET Framework 并不是对每个平台的所有版本都提供支持。有关受支持版本的列表,请参见系统要求

版本信息

.NET Framework

受以下版本支持:2.0、1.1、1.0

请参见

参考

ControlDesigner 类
ControlDesigner 成员
System.Windows.Forms.Design 命名空间
DefWndProc
Control.WndProc
Control.DefWndProc