This repository has been archived by the owner on Jul 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm1.Designer.cs
98 lines (95 loc) · 2.83 KB
/
Form1.Designer.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
95
96
97
98
using System.Windows.Forms;
namespace CodeStage_Decrypter
{
public partial class DecrypterForm
{
private TextBox cryptoKeyBox;
private TextBox textBox;
private CheckBox encryptModeCheck;
private Button decencButton;
private CheckBox valueModeCheck;
private TextBox resultBox;
/// <summary>
/// <p>Automatically generated by Visual Studio</p>
/// <p><b>DO NOT MODIFY</b></p>
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DecrypterForm));
cryptoKeyBox = new TextBox();
textBox = new TextBox();
encryptModeCheck = new CheckBox();
decencButton = new Button();
valueModeCheck = new CheckBox();
resultBox = new TextBox();
label1 = new Label();
SuspendLayout();
//
// cryptoKeyBox
//
resources.ApplyResources(cryptoKeyBox, "cryptoKeyBox");
cryptoKeyBox.Name = "cryptoKeyBox";
cryptoKeyBox.TextChanged += cryptoKeyBox_TextChanged;
//
// textBox
//
resources.ApplyResources(textBox, "textBox");
textBox.Name = "textBox";
//
// encryptModeCheck
//
resources.ApplyResources(encryptModeCheck, "encryptModeCheck");
encryptModeCheck.Name = "encryptModeCheck";
encryptModeCheck.UseVisualStyleBackColor = true;
encryptModeCheck.CheckedChanged += encryptModeCheck_CheckedChanged;
//
// decencButton
//
resources.ApplyResources(decencButton, "decencButton");
decencButton.Name = "decencButton";
decencButton.UseVisualStyleBackColor = true;
decencButton.Click += decencButton_Click;
//
// valueModeCheck
//
resources.ApplyResources(valueModeCheck, "valueModeCheck");
valueModeCheck.Name = "valueModeCheck";
valueModeCheck.UseVisualStyleBackColor = true;
valueModeCheck.CheckedChanged += valueModeCheck_CheckedChanged;
//
// resultBox
//
resultBox.HideSelection = false;
resources.ApplyResources(resultBox, "resultBox");
resultBox.Name = "resultBox";
resultBox.ReadOnly = true;
//
// label1
//
resources.ApplyResources(label1, "label1");
label1.Name = "label1";
//
// DecrypterForm
//
resources.ApplyResources(this, "$this");
AutoScaleMode = AutoScaleMode.Font;
Controls.Add(resultBox);
Controls.Add(valueModeCheck);
Controls.Add(decencButton);
Controls.Add(encryptModeCheck);
Controls.Add(textBox);
Controls.Add(cryptoKeyBox);
Controls.Add(label1);
FormBorderStyle = FormBorderStyle.FixedSingle;
MaximizeBox = false;
Name = "DecrypterForm";
SizeGripStyle = SizeGripStyle.Hide;
Load += Form1_Load;
Enter += DecrypterForm_Enter;
Leave += DecrypterForm_Leave;
ResumeLayout(false);
PerformLayout();
}
private Label label1;
}
}