目录
利用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 + “rn”);
}
}
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 + "rn");
}
}
目前遇到一个问题
获取的聊天信息不全,最近的多条聊天信息获取不到。
其他解决办法
1、截图OCR识别
2、不断复制,从剪切板中读取
原文地址:https://blog.csdn.net/weixin_46771779/article/details/135711640
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_61759.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!