C#中WndProc(ref Message m)是在哪个类里的
WndProc我知道继承自Form类以后可以重载,但是在其他的类里可以吗??我的意思就是,能不能不用窗体,也处理消息...
WndProc我知道继承自Form类以后可以重载,但是在其他的类里可以吗??
我的意思就是,能不能不用窗体,也处理消息 展开
我的意思就是,能不能不用窗体,也处理消息 展开
3个回答
展开全部
C#中WndProc(ref Message m)是Control类中的方法,用来处理Windows消息。
Control.WndProc 方法 说明如下:
处理 Windows 消息。
命名空间: System.Windows.Forms
程序集: System.Windows.Forms(在 System.Windows.Forms.dll 中)
语法
C#
[SecurityPermissionAttribute(SecurityAction.InheritanceDemand, Flags = SecurityPermissionFlag.UnmanagedCode)]
[SecurityPermissionAttribute(SecurityAction.LinkDemand, Flags = SecurityPermissionFlag.UnmanagedCode)]
protected virtual void WndProc(
ref Message m
)
参数
m
类型:System.Windows.Forms.Message%
要处理的 WindowsMessage。
备注
在通过 PreProcessMessage 方法筛选之后,所有消息都发送到 WndProc 方法。
WndProc 方法与 Windows WindowProc 函数完全对应。有关处理 Windows 消息的更多信息,请参见 MSDN Library(位于 http://msdn2.microsoft.com/zh-cn/library/default.aspx. Windows Platform SDK 参考中的 WindowProc 函数文档。
对继承者的说明:
进行继承的控件应调用基类的 WndProc 方法以处理它们不处理的任何消息。
Control.WndProc 方法 说明如下:
处理 Windows 消息。
命名空间: System.Windows.Forms
程序集: System.Windows.Forms(在 System.Windows.Forms.dll 中)
语法
C#
[SecurityPermissionAttribute(SecurityAction.InheritanceDemand, Flags = SecurityPermissionFlag.UnmanagedCode)]
[SecurityPermissionAttribute(SecurityAction.LinkDemand, Flags = SecurityPermissionFlag.UnmanagedCode)]
protected virtual void WndProc(
ref Message m
)
参数
m
类型:System.Windows.Forms.Message%
要处理的 WindowsMessage。
备注
在通过 PreProcessMessage 方法筛选之后,所有消息都发送到 WndProc 方法。
WndProc 方法与 Windows WindowProc 函数完全对应。有关处理 Windows 消息的更多信息,请参见 MSDN Library(位于 http://msdn2.microsoft.com/zh-cn/library/default.aspx. Windows Platform SDK 参考中的 WindowProc 函数文档。
对继承者的说明:
进行继承的控件应调用基类的 WndProc 方法以处理它们不处理的任何消息。
展开全部
private void MS.Win32.WndProc(ref Message m)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
不用窗体 你要处理什么消息呢....
这个函数应该最顶层是Control类实现的 Form作为继承并且重写了这个方法
这个函数应该最顶层是Control类实现的 Form作为继承并且重写了这个方法
更多追问追答
追问
后台处理windows的消息,我写了一个继承Control的类,重写了WndProc方法,大括号设置断点,Main函数是新建类,然后执行CreateControl()方法,再Application.Run();阻塞进程。运行的时候,只有刚启动时会跳到断点,后边就不行了,怎么解决?
追答
把控件放在窗体上再执行。。
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询