C# 获取QQ会话聊天信息

发布时间:2024年01月20日

目录

利用UIAutomation获取QQ会话聊天信息

效果?

代码?

目前遇到一个问题

其他解决办法


利用UIAutomation获取QQ会话聊天信息

效果?

代码?

AutomationElement window = AutomationElement.FromHandle(get.WindowHwnd);

AutomationElement QQMsgList = window.FindFirst(TreeScope.Descendants,
? ? new PropertyCondition(AutomationElement.NameProperty, "消息"));
if (QQMsgList != null)
{
? ? AutomationElementCollection ALLMsg = QQMsgList.FindAll(TreeScope.Descendants,
? ? ? ? new PropertyCondition(AutomationElement.ControlTypeProperty, ControlType.ListItem));

? ? foreach (AutomationElement item in ALLMsg)
? ? {
? ? ? ? rtxtInfo.AppendText(item.Current.Name + "\r\n");
? ? }
}

AutomationElement window = AutomationElement.FromHandle(get.WindowHwnd);

AutomationElement QQMsgList = window.FindFirst(TreeScope.Descendants,
    new PropertyCondition(AutomationElement.NameProperty, "消息"));
if (QQMsgList != null)
{
    AutomationElementCollection ALLMsg = QQMsgList.FindAll(TreeScope.Descendants,
        new PropertyCondition(AutomationElement.ControlTypeProperty, ControlType.ListItem));

    foreach (AutomationElement item in ALLMsg)
    {
        rtxtInfo.AppendText(item.Current.Name + "\r\n");
    }
}

目前遇到一个问题

获取的聊天信息不全,最近的多条聊天信息获取不到。

其他解决办法

1、截图OCR识别

2、不断复制,从剪切板中读取

文章来源:https://blog.csdn.net/weixin_46771779/article/details/135711640
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。