-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainForm.Designer.cs
More file actions
100 lines (98 loc) · 3.62 KB
/
MainForm.Designer.cs
File metadata and controls
100 lines (98 loc) · 3.62 KB
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
namespace SecureHasher
{
partial class MainForm
{
private System.ComponentModel.IContainer components = null;
private Button btnHashFile;
private Button btnHashFolder;
private Button btnHashZip;
private Button btnGeneratePassword;
private Button btnGitHub;
private TextBox txtOutput;
protected override void Dispose(bool disposing)
{
if (disposing && (components != null)) components.Dispose();
base.Dispose(disposing);
}
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
btnHashFile = new Button();
btnHashFolder = new Button();
btnHashZip = new Button();
btnGeneratePassword = new Button();
btnGitHub = new Button();
txtOutput = new TextBox();
SuspendLayout();
//
// btnHashFile
//
btnHashFile.Location = new Point(12, 12);
btnHashFile.Name = "btnHashFile";
btnHashFile.Size = new Size(75, 23);
btnHashFile.TabIndex = 0;
btnHashFile.Text = "Datei hashen";
btnHashFile.Click += btnHashFile_Click;
//
// btnHashFolder
//
btnHashFolder.Location = new Point(120, 12);
btnHashFolder.Name = "btnHashFolder";
btnHashFolder.Size = new Size(75, 23);
btnHashFolder.TabIndex = 1;
btnHashFolder.Text = "Ordner hashen";
btnHashFolder.Click += btnHashFolder_Click;
//
// btnHashZip
//
btnHashZip.Location = new Point(228, 12);
btnHashZip.Name = "btnHashZip";
btnHashZip.Size = new Size(75, 23);
btnHashZip.TabIndex = 2;
btnHashZip.Text = "ZIP hashen";
btnHashZip.Click += btnHashZip_Click;
//
// btnGeneratePassword
//
btnGeneratePassword.Location = new Point(336, 12);
btnGeneratePassword.Name = "btnGeneratePassword";
btnGeneratePassword.Size = new Size(75, 23);
btnGeneratePassword.TabIndex = 3;
btnGeneratePassword.Text = "Passwort";
btnGeneratePassword.Click += btnGeneratePassword_Click;
//
// btnGitHub
//
btnGitHub.Location = new Point(444, 12);
btnGitHub.Name = "btnGitHub";
btnGitHub.Size = new Size(75, 23);
btnGitHub.TabIndex = 4;
btnGitHub.Text = "GitHub";
btnGitHub.Click += btnGitHub_Click;
//
// txtOutput
//
txtOutput.Location = new Point(12, 50);
txtOutput.Multiline = true;
txtOutput.Name = "txtOutput";
txtOutput.ScrollBars = ScrollBars.Vertical;
txtOutput.Size = new Size(560, 300);
txtOutput.TabIndex = 5;
//
// MainForm
//
ClientSize = new Size(584, 361);
Controls.Add(btnHashFile);
Controls.Add(btnHashFolder);
Controls.Add(btnHashZip);
Controls.Add(btnGeneratePassword);
Controls.Add(btnGitHub);
Controls.Add(txtOutput);
Icon = (Icon)resources.GetObject("$this.Icon");
Name = "MainForm";
Text = "🔐 SecureHasher | ©Thorsten Bylicki | © BYLICKILABS";
ResumeLayout(false);
PerformLayout();
}
}
}