-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathStringToHashForm.Designer.cs
More file actions
94 lines (87 loc) · 3.89 KB
/
StringToHashForm.Designer.cs
File metadata and controls
94 lines (87 loc) · 3.89 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
namespace SMPCTool
{
// Token: 0x02000013 RID: 19
public partial class StringToHashForm : global::System.Windows.Forms.Form
{
// Token: 0x06000097 RID: 151 RVA: 0x0000C670 File Offset: 0x0000A870
protected override void Dispose(bool disposing)
{
bool flag = disposing && this.components != null;
if (flag)
{
this.components.Dispose();
}
base.Dispose(disposing);
}
// Token: 0x06000098 RID: 152 RVA: 0x0000C6A8 File Offset: 0x0000A8A8
private void InitializeComponent()
{
this.stringTextBox = new global::System.Windows.Forms.TextBox();
this.hashTextBox = new global::System.Windows.Forms.TextBox();
this.generateButton = new global::System.Windows.Forms.Button();
this.label1 = new global::System.Windows.Forms.Label();
this.label2 = new global::System.Windows.Forms.Label();
base.SuspendLayout();
this.stringTextBox.Location = new global::System.Drawing.Point(12, 27);
this.stringTextBox.Name = "stringTextBox";
this.stringTextBox.Size = new global::System.Drawing.Size(457, 20);
this.stringTextBox.TabIndex = 0;
this.hashTextBox.Location = new global::System.Drawing.Point(12, 98);
this.hashTextBox.Name = "hashTextBox";
this.hashTextBox.ReadOnly = true;
this.hashTextBox.Size = new global::System.Drawing.Size(457, 20);
this.hashTextBox.TabIndex = 1;
this.hashTextBox.TextAlign = global::System.Windows.Forms.HorizontalAlignment.Center;
this.generateButton.Location = new global::System.Drawing.Point(155, 53);
this.generateButton.Name = "generateButton";
this.generateButton.Size = new global::System.Drawing.Size(171, 23);
this.generateButton.TabIndex = 2;
this.generateButton.Text = "GENERATE";
this.generateButton.UseVisualStyleBackColor = true;
this.generateButton.Click += new global::System.EventHandler(this.generateButton_Click);
this.label1.AutoSize = true;
this.label1.ForeColor = global::System.Drawing.Color.Silver;
this.label1.Location = new global::System.Drawing.Point(11, 11);
this.label1.Name = "label1";
this.label1.Size = new global::System.Drawing.Size(34, 13);
this.label1.TabIndex = 3;
this.label1.Text = "String";
this.label2.AutoSize = true;
this.label2.ForeColor = global::System.Drawing.Color.Silver;
this.label2.Location = new global::System.Drawing.Point(9, 82);
this.label2.Name = "label2";
this.label2.Size = new global::System.Drawing.Size(32, 13);
this.label2.TabIndex = 4;
this.label2.Text = "Hash";
base.AutoScaleDimensions = new global::System.Drawing.SizeF(6f, 13f);
base.AutoScaleMode = global::System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = global::System.Drawing.Color.FromArgb(40, 40, 40);
base.ClientSize = new global::System.Drawing.Size(482, 130);
base.Controls.Add(this.label2);
base.Controls.Add(this.label1);
base.Controls.Add(this.generateButton);
base.Controls.Add(this.hashTextBox);
base.Controls.Add(this.stringTextBox);
base.FormBorderStyle = global::System.Windows.Forms.FormBorderStyle.FixedDialog;
base.MaximizeBox = false;
base.MinimizeBox = false;
base.Name = "StringToHashForm";
base.StartPosition = global::System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "String To Hash Generator";
base.ResumeLayout(false);
base.PerformLayout();
}
// Token: 0x04000086 RID: 134
private global::System.ComponentModel.IContainer components = null;
// Token: 0x04000087 RID: 135
private global::System.Windows.Forms.TextBox stringTextBox;
// Token: 0x04000088 RID: 136
private global::System.Windows.Forms.TextBox hashTextBox;
// Token: 0x04000089 RID: 137
private global::System.Windows.Forms.Button generateButton;
// Token: 0x0400008A RID: 138
private global::System.Windows.Forms.Label label1;
// Token: 0x0400008B RID: 139
private global::System.Windows.Forms.Label label2;
}
}