-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQrCodeForm.cs
89 lines (74 loc) · 2.23 KB
/
QrCodeForm.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
namespace TheTalosCompanion
{
public partial class QrCodeForm : Form
{
public QrCodeForm()
{
InitializeComponent();
var screenBounds = Screen.FromControl(this).Bounds;
this.Location = new Point(
screenBounds.Width - this.Width - 10,
screenBounds.Height - this.Height - 10
);
}
private void Form1_Load(object sender, EventArgs e)
{
DecodeNewImage();
}
public void DecodeNewImage()
{
try
{
var screenshot = Clipboard.GetImage();
if (screenshot != null)
{
pbScreenshot.Image = screenshot;
txtDecodedText.Text = MLA.DecodeQrcode(new Bitmap(pbScreenshot.Image));
}
}
catch
{
txtDecodedText.Text = "";
}
pnlCloseTime.Width = this.Width;
tmrAutoClose.Start();
}
private void tmrAutoClose_Tick(object sender, EventArgs e)
{
pnlCloseTime.Width -= (int) Math.Floor(this.Width * 0.003);
if (pnlCloseTime.Width <= 0) Close();
}
private void QrCodeForm_MouseEnter(object sender, EventArgs e)
{
tmrAutoClose.Stop();
}
private void QrCodeForm_MouseLeave(object sender, EventArgs e)
{
tmrAutoClose.Start();
}
private void txtDecodedText_MouseEnter(object sender, EventArgs e)
{
tmrAutoClose.Stop();
}
private void txtDecodedText_MouseLeave(object sender, EventArgs e)
{
tmrAutoClose.Start();
}
private void pbScreenshot_MouseEnter(object sender, EventArgs e)
{
tmrAutoClose.Stop();
}
private void pbScreenshot_MouseLeave(object sender, EventArgs e)
{
tmrAutoClose.Start();
}
private void pnlCloseTime_MouseEnter(object sender, EventArgs e)
{
tmrAutoClose.Stop();
}
private void pnlCloseTime_MouseLeave(object sender, EventArgs e)
{
tmrAutoClose.Start();
}
}
}