forked from y4htse/desktop-xamarin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
passwordPrompt.cs
94 lines (82 loc) · 3.06 KB
/
passwordPrompt.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
using System;
using System.Drawing;
using System.Windows.Forms;
namespace TurtleWallet
{
public partial class PasswordPrompt : TurtleWalletForm
{
public string WalletPassword
{
get;
set;
}
public PasswordPrompt()
{
InitializeComponent();
this.Text = "Turtle Wallet";
walletPasswordLabel.Text = String.Format("{0} Wallet Password:", System.IO.Path.GetFileNameWithoutExtension(Properties.Settings.Default.walletPath));
}
protected override void OnFormClosing(FormClosingEventArgs e)
{
Utilities.CloseProgram(e);
}
private void PasswordText_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Enter)
{
if (passwordText.Text != "" && passwordText.Text.Length > 6)
{
WalletPassword = passwordText.Text;
Utilities.SetDialogResult(this, DialogResult.OK);
Utilities.Close(this);
}
}
}
private void CancelButton_MouseEnter(object sender, EventArgs e)
{
var backcolor = Color.FromArgb(44, 44, 44);
var forcolor = Color.FromArgb(39, 170, 107);
var currentButton = (Label)sender;
currentButton.BackColor = backcolor;
currentButton.ForeColor = forcolor;
}
private void CancelButton_MouseLeave(object sender, EventArgs e)
{
var backcolor = Color.FromArgb(52, 52, 52);
var forcolor = Color.FromArgb(224, 224, 224);
var currentButton = (Label)sender;
currentButton.BackColor = backcolor;
currentButton.ForeColor = forcolor;
}
private void CreateWalletButton_MouseEnter(object sender, EventArgs e)
{
var backcolor = Color.FromArgb(44, 44, 44);
var forcolor = Color.FromArgb(39, 170, 107);
var currentButton = (Label)sender;
currentButton.BackColor = backcolor;
currentButton.ForeColor = forcolor;
}
private void CreateWalletButton_MouseLeave(object sender, EventArgs e)
{
var backcolor = Color.FromArgb(52, 52, 52);
var forcolor = Color.FromArgb(224, 224, 224);
var currentButton = (Label)sender;
currentButton.BackColor = backcolor;
currentButton.ForeColor = forcolor;
}
private void CancelButton_Click(object sender, EventArgs e)
{
DialogResult dialogResult = MessageBox.Show("Are you sure you want to cancel?", "Turtle Wallet Cancel?", MessageBoxButtons.YesNo);
if (dialogResult == DialogResult.Yes)
{
Utilities.Close(this);
}
}
private void CreateWalletButton_Click(object sender, EventArgs e)
{
WalletPassword = passwordText.Text;
Utilities.SetDialogResult(this, DialogResult.OK);
Utilities.Close(this);
}
}
}