-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm2.Designer.cs
More file actions
125 lines (120 loc) · 4.22 KB
/
Form2.Designer.cs
File metadata and controls
125 lines (120 loc) · 4.22 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
namespace Cyber_Sleuth_Mod_Evolution_Analyzer
{
partial class Form2
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
okButton = new Button();
cancelButton = new Button();
folderNameLabel = new Label();
modName = new TextBox();
modNameLabel = new Label();
folderName = new ComboBox();
SuspendLayout();
//
// okButton
//
okButton.Location = new Point(12, 100);
okButton.Name = "okButton";
okButton.Size = new Size(75, 23);
okButton.TabIndex = 0;
okButton.Text = "OK";
okButton.UseVisualStyleBackColor = true;
okButton.Click += okButton_Click;
//
// cancelButton
//
cancelButton.DialogResult = DialogResult.Cancel;
cancelButton.Location = new Point(247, 100);
cancelButton.Name = "cancelButton";
cancelButton.Size = new Size(75, 23);
cancelButton.TabIndex = 1;
cancelButton.Text = "Cancel";
cancelButton.UseVisualStyleBackColor = true;
//
// folderNameLabel
//
folderNameLabel.AutoSize = true;
folderNameLabel.Location = new Point(11, 53);
folderNameLabel.Name = "folderNameLabel";
folderNameLabel.Size = new Size(76, 15);
folderNameLabel.TabIndex = 3;
folderNameLabel.Text = "Folder name:";
//
// modName
//
modName.Location = new Point(12, 27);
modName.Name = "modName";
modName.Size = new Size(310, 23);
modName.TabIndex = 0;
modName.TextChanged += modName_TextChanged;
//
// modNameLabel
//
modNameLabel.AutoSize = true;
modNameLabel.Location = new Point(12, 9);
modNameLabel.Name = "modNameLabel";
modNameLabel.Size = new Size(68, 15);
modNameLabel.TabIndex = 5;
modNameLabel.Text = "Mod name:";
//
// folderName
//
folderName.FormattingEnabled = true;
folderName.Location = new Point(11, 71);
folderName.Name = "folderName";
folderName.Size = new Size(310, 23);
folderName.TabIndex = 6;
folderName.TextChanged += folderName_TextChanged;
//
// Form2
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
CancelButton = cancelButton;
ClientSize = new Size(334, 134);
Controls.Add(modNameLabel);
Controls.Add(folderNameLabel);
Controls.Add(cancelButton);
Controls.Add(okButton);
Controls.Add(folderName);
Controls.Add(modName);
MaximizeBox = false;
MinimizeBox = false;
Name = "Form2";
ShowIcon = false;
ShowInTaskbar = false;
Text = "CSMEA - Save Generated Mod";
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button okButton;
private Button cancelButton;
private Label folderNameLabel;
private TextBox modName;
private Label modNameLabel;
private ComboBox folderName;
}
}