急!急!急!请问win32api参数乱码如何解决!
我想做一个QQ自动登陆,使用的QQ是2009.现在先模拟打开QQ,然后通过api调用回调函数。回调函数为一个委托方法,但是在方法中整个参数乱码,请问如何解决?
具体流程为,启动QQ,获取当前启动QQ的句柄,通过EnumChildWindows方法回调方法,但是在EnumWindowsProc中,account和pwd乱码。请问如何解决?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | public delegate bool CallBack(IntPtr hwnd, int lParam, string account, string pwd ); [DllImport( "user32.dll" , CharSet = CharSet.Auto, SetLastError = true )] static extern IntPtr EnumChildWindows(IntPtr hWndParent, CallBack lpEnumFunc, int lParam); /// <summary> /// QQ登录 /// </summary> public static void LoginIn( string account = "123456" , string pwd = "123456" ) { //启动QQ程序 StartCmd(); IntPtr h; string strName = "QQ2009" ; h = FindWindow( null , strName); if (h.ToInt32() != 0) { MoveWindow(h, 0, 0, 350, 300, true ); CallBack myCallBack = new CallBack(EnumWindowsProc); EnumChildWindows(h, myCallBack, 0); } } /// <summary> ///将鼠标移动到登陆按钮 /// </summary> /// <param name="h"></param> /// <param name="lParam"></param> /// <returns></returns> private static bool EnumWindowsProc(IntPtr h, int lParam, string account, string pwd) { //改变账号 SetCursorPos(900, 530); SetForegroundWindow(h); SendMessage(h, 0x000C, IntPtr.Zero, account.ToString()); //移动鼠标到登陆按钮 SetCursorPos(1090, 645); SetForegroundWindow(h); mouse_event(MOUSEEVENTF_LEFTDOWN | MOUSEEVENTF_LEFTUP, 0, 0, 0, 0); return false ; } |
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· 阿里巴巴 QwQ-32B真的超越了 DeepSeek R-1吗?
· 【译】Visual Studio 中新的强大生产力特性
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
· 【设计模式】告别冗长if-else语句:使用策略模式优化代码结构