目录
利用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、不断复制,从剪切板中读取
猜你喜欢
- 15天前梦中见斗殴流血的心理解析
- 15天前女性梦境解析 活鱼象征的生命力与机遇
- 15天前梦见燕子筑巢的吉祥寓意解析
- 15天前免费测算你的婚姻运势与未来
- 15天前梦见很多鬼预示什么征兆
- 13天前梦见血预示什么 专家解析梦境含义
- 13天前梦中遇袭的心理分析与应对
- 13天前女人梦见被蛇追赶预示什么
- 13天前梦见杀猪的周公解梦解析
- 13天前周公解梦梦见乌龟的寓意解析
网友评论
- 搜索
- 最新文章
- 热门文章