const MY_MESSAGE = WM_USER+100;procedure MyMessage(var Msg: TMessage); message MY_MESSAGE;procedure TForm1.MyMessage(var Msg: TMessage);begin....end;
在c#中我可以这样做
public static uint ms;protected overrIDe voID WndProc(ref Message m){ if(m.Msg == ms) MessageBox.Show("example"); else base.WndProc(ref m); }voID button1Click(object sender,EventArgs e){ PostMessage(HWND_broADCAST,ms,IntPtr.Zero,IntPtr.Zero);}
但我不想覆盖WndProc(),我想创建我自己的MyMessage()函数,当我发布消息它将运行.
我怎样才能做到这一点?
谢谢.
以上是内存溢出为你收集整理的C#是否具有相当于Delphi的消息关键字?全部内容,希望文章能够帮你解决C#是否具有相当于Delphi的消息关键字?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)