当前位置:编程学习 > C#/ASP.NET >>

C#调用WinAPI发送消息SendMessage

调用DLL中的方法

首先,应该在C#语言源程序中声明外部方法,其基本形式是:
[DLLImport("DLL文件")]

修饰符extern返回变量类型方法名称(参数列表)
[DllImport("user32.dll", EntryPoint = "SendMessage")]
        public static extern int SendMessage(
            IntPtr hWnd,   // handle to destination window
            int Msg,    // message
            int wParam, // first message parameter
            int lParam // second message parameter
        ); www.zzzyk.com


对于 DllImport  必须在方法的前面(具体参考MSDN),EntryPoint  = "SendMessage" 表示DLL内的函数名(写错了会提示找不到 入口)。

需要用的时候直接调用 SendMessage(参数1,参数2,参数3,参数4) 方法即可。

补充:软件开发 , C# ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,