C#写的QQ自动发消息.rar

时间:2015-10-19 11:59:47
【文件属性】:

文件名称:C#写的QQ自动发消息.rar

文件大小:121KB

文件格式:RAR

更新时间:2015-10-19 11:59:47

C# QQ 自动 发消息

作者: 三角猫 出处: http://www.zu14.cn/ 版权归 三角猫 和 真有意思网 所有,转载请注明出处 using System; using System.Collections.Generic; using System.Text; namespace QQAutoMsg { ///

/// 消息发送 /// internal static class QQMsgSender { /// /// 发送消息 /// /// 所以已打开的QQ窗体的列表 /// 消息内容 internal static void Go(List qqChatWindows, string msg) { foreach (EnumQQChatWindows.QQChatWindow win in qqChatWindows) { SendMsg(win.WindowHwnd, msg); } } /// /// 根据窗体句柄,找到输入框和发送按钮,发送消息出去 /// /// 聊天窗口句柄 /// 消息内容 private static void SendMsg(IntPtr hWnd, string msg) { if (NativeMethods.IsWindow(hWnd)) //确认该聊天窗口仍然有效 { ////找到 发送 按钮 IntPtr hwndButton = NativeMethods.FindWindowEx(hWnd, IntPtr.Zero, "Button", "发送(S)"); if (IntPtr.Zero != hwndButton) { ////找到窗体顺序上的第一个RichEdit20A控件,其实就是消息显示框 IntPtr hwndRichEdit = NativeMethods.FindWindowEx(hWnd, IntPtr.Zero, "RichEdit20A", null); ////利用spy++,可以看到消息输入框的父窗体是类名为 AfxWnd42 的控件 ////在顺序上是显示框的下一个窗体 if (IntPtr.Zero != hwndRichEdit) { ////找到 AfxWnd42 这个窗体 hwndRichEdit = NativeMethods.GetWindow(hwndRichEdit, NativeMethods.GW_HWNDNEXT); if (IntPtr.Zero != hwndRichEdit) { ////这才是真正的消息输入框 hwndRichEdit = NativeMethods.FindWindowEx(hwndRichEdit, IntPtr.Zero, "RichEdit20A", null); if (hwndRichEdit != IntPtr.Zero) { ////发送消息,因为QQ屏蔽了 WM_SETTEXT, WM_PASTE 命令,所有采用 EM_REPLACESEL 来实现 NativeMethods.SendMessage(hwndRichEdit, NativeMethods.EM_REPLACESEL, IntPtr.Zero, msg); ////给发送按钮发 鼠标单击消息 NativeMethods.SendMessage(hwndButton, NativeMethods.BM_CLICK, IntPtr.Zero, IntPtr.Zero); } } } } } } } }


网友评论

  • 现在没啥用了
  • 真可惜,用不了了。QQ 9.0 失败
  • 可以使用,谢谢分享!
  • 可惜不能用了
  • 资料太老了, 用不了
  • 资料有点老了 新版不适合了
  • 可惜新版本QQ不支持该方法。
  • 不能用啊,可惜
  • 还可以吧,可以参考参考
  • 可惜新版本QQ不支持该方法。
  • 下下来无法正常使用
  • 学习,不过不可用,有时间研究
  • 学习,不过不可用,有时间研究
  • 东西不错,值得学习。
  • 貌似不是我想要的,不过还是谢谢。
  • 太老了,思路可以参考
  • 还可以吧,作为参考资料
  • 真的值得学习的东西,谢谢分享
  • 无法捕获QQ窗
  • 可以借鉴思路,但是没法用,不知道怎么回事
  • 思路可以借鉴,代码已经达不到该功能了
  • 思路可以借鉴,代码已经达不到该功能了
  • 很不错的东西,值得学习
  • 东西不错,值得学习。
  • 太老了,思路可以参考
  • 太老了,思路可以参考
  • 谢谢,很有用的
  • 无法发送,哎
  • 无法捕获QQ窗口 仅作参考
  • 思路可以借鉴,代码已经达不到该功能了。