-
Notifications
You must be signed in to change notification settings - Fork 280
/
Analyse.xaml.cs
110 lines (100 loc) · 3.39 KB
/
Analyse.xaml.cs
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
using WechatBakTool.Model;
namespace WechatBakTool
{
/// <summary>
/// Analyse.xaml 的交互逻辑
/// </summary>
public partial class Analyse : Window
{
private UserBakConfig UserBakConfig;
private WXUserReader UserReader;
public Analyse(UserBakConfig userBakConfig,WXUserReader reader)
{
UserBakConfig = userBakConfig;
UserReader = reader;
InitializeComponent();
}
private void btn_analyse_Click(object sender, RoutedEventArgs e)
{
var tmp = UserReader.GetWXContacts();
List<WXContact> contacts;
if (tmp == null)
contacts = new List<WXContact>();
else
contacts = tmp.ToList();
List<WXMsgGroup> list = UserReader.GetWXMsgGroup().OrderByDescending(x => x.MsgCount).ToList();
foreach (WXMsgGroup item in list)
{
WXContact? contact = contacts.Find(x => x.UserName == item.UserName);
if (contact != null)
{
item.NickName = contact.NickName;
}
else
item.NickName = "已删除人员:" + item.UserName;
}
list_msg_group.ItemsSource = list;
}
private void btn_copy_id_Click(object sender, RoutedEventArgs e)
{
WXMsgGroup? msgGroup = list_msg_group.SelectedItem as WXMsgGroup;
if(msgGroup == null)
{
MessageBox.Show("请先选择数据");
return;
}
else
{
Clipboard.SetDataObject(msgGroup.UserName);
}
}
private void list_msg_group_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
WXMsgGroup? wXMsgGroup = list_msg_group.SelectedItem as WXMsgGroup;
if(wXMsgGroup != null)
{
List<WXMsg>? wXMsgs = UserReader.GetWXMsgs(wXMsgGroup.UserName);
if(wXMsgs != null)
{
wXMsgs = wXMsgs.OrderByDescending(x => x.CreateTime).ToList();
list_msg_search.ItemsSource = wXMsgs;
}
}
}
private void btn_search_Click(object sender, RoutedEventArgs e)
{
List<WXMsg>? wXMsgs = UserReader.GetWXMsgs("",txt_search_text.Text);
if (wXMsgs != null)
{
wXMsgs = wXMsgs.OrderByDescending(x => x.CreateTime).ToList();
list_msg_search.ItemsSource = wXMsgs;
}
}
private void btn_search_copy_id_Click(object sender, RoutedEventArgs e)
{
WXMsg? wxMsg = list_msg_search.SelectedItem as WXMsg;
if (wxMsg == null)
{
MessageBox.Show("请先选择数据");
return;
}
else
{
Clipboard.SetDataObject(wxMsg.StrTalker);
}
}
}
}