-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathLinkScheduler.cs
83 lines (79 loc) · 2.48 KB
/
LinkScheduler.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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Windows.Forms;
using IMLokesh.Extensions;
namespace Better_Nike_Bot
{
// Token: 0x02000026 RID: 38
public partial class LinkScheduler : Form
{
// Token: 0x060001CF RID: 463 RVA: 0x00002FBA File Offset: 0x000011BA
public LinkScheduler()
{
this.InitializeComponent();
}
// Token: 0x060001D0 RID: 464 RVA: 0x00020B64 File Offset: 0x0001ED64
private void LinkScheduler_Load(object sender, EventArgs e)
{
base.CenterToParent();
this.dataGridView1.AllowUserToResizeRows = false;
this.dataGridView1.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;
this.dataGridView1.BackgroundColor = SystemColors.ButtonFace;
this.dataGridView1.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this._table = new DataTable("Links");
this._table.Columns.Add(new DataColumn("Link", typeof(string)));
this._table.Columns.Add(new DataColumn("DateTime", typeof(DateTime)));
foreach (MonitorLink monitorLink in Form1.MonitorLinks)
{
this._table.Rows.Add(new object[]
{
monitorLink.Link,
monitorLink.StartTime
});
}
this.dataGridView1.DataSource = this._table;
this.dataGridView1.Columns[1].DefaultCellStyle.Format = "G";
}
// Token: 0x060001D1 RID: 465 RVA: 0x00020CA4 File Offset: 0x0001EEA4
private void buttonSave_Click(object sender, EventArgs e)
{
foreach (DataRow dataRow in this._table.Select())
{
foreach (MonitorLink monitorLink3 in Form1.MonitorLinks)
{
if (dataRow[0].ToString() == monitorLink3.Link)
{
monitorLink3.StartTime = (DateTime)dataRow[1];
}
}
}
using (List<MonitorLink>.Enumerator enumerator2 = Form1.MonitorLinks.GetEnumerator())
{
while (enumerator2.MoveNext())
{
MonitorLink monitorLink = enumerator2.Current;
MonitorLink monitorLink2 = Form1.MonitorLinkCache.FirstOrDefault((MonitorLink l) => l.Link == monitorLink.Link);
if (monitorLink2.IsNotNull())
{
monitorLink2.StartTime = monitorLink.StartTime;
}
else
{
Form1.MonitorLinkCache.Add(new MonitorLink
{
StartTime = monitorLink.StartTime,
Link = monitorLink.Link
});
}
}
}
base.DialogResult = DialogResult.OK;
}
// Token: 0x040001A1 RID: 417
private DataTable _table;
}
}