-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathformEditorToml.Designer.cs
More file actions
179 lines (174 loc) · 7.02 KB
/
formEditorToml.Designer.cs
File metadata and controls
179 lines (174 loc) · 7.02 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
namespace FSR3ModSetupUtilityEnhanced
{
partial class formEditorToml
{
/// <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()
{
panel1 = new Panel();
richToml = new RichTextBox();
menuStrip1 = new MenuStrip();
toolStripMenuItem1 = new ToolStripMenuItem();
toolStripMenuItem2 = new ToolStripMenuItem();
toolStripMenuItem3 = new ToolStripMenuItem();
toolStripMenuItem4 = new ToolStripMenuItem();
labelToml = new Label();
panel2 = new Panel();
panel1.SuspendLayout();
menuStrip1.SuspendLayout();
panel2.SuspendLayout();
SuspendLayout();
//
// panel1
//
panel1.BackColor = Color.DimGray;
panel1.Controls.Add(richToml);
panel1.Controls.Add(menuStrip1);
panel1.Location = new Point(236, 0);
panel1.Name = "panel1";
panel1.Size = new Size(359, 452);
panel1.TabIndex = 1;
//
// richToml
//
richToml.BackColor = Color.DimGray;
richToml.BorderStyle = BorderStyle.None;
richToml.Dock = DockStyle.Fill;
richToml.ForeColor = Color.White;
richToml.Location = new Point(0, 24);
richToml.Margin = new Padding(0);
richToml.Name = "richToml";
richToml.Size = new Size(359, 428);
richToml.TabIndex = 0;
richToml.Text = "";
richToml.TextChanged += richTextBox1_TextChanged;
//
// menuStrip1
//
menuStrip1.BackColor = Color.DarkGray;
menuStrip1.BackgroundImageLayout = ImageLayout.None;
menuStrip1.GripMargin = new Padding(0);
menuStrip1.ImageScalingSize = new Size(0, 0);
menuStrip1.Items.AddRange(new ToolStripItem[] { toolStripMenuItem1 });
menuStrip1.LayoutStyle = ToolStripLayoutStyle.HorizontalStackWithOverflow;
menuStrip1.Location = new Point(0, 0);
menuStrip1.Name = "menuStrip1";
menuStrip1.Padding = new Padding(0);
menuStrip1.RightToLeft = RightToLeft.No;
menuStrip1.Size = new Size(359, 24);
menuStrip1.TabIndex = 1;
menuStrip1.Text = "menuStrip1";
//
// toolStripMenuItem1
//
toolStripMenuItem1.BackgroundImageLayout = ImageLayout.None;
toolStripMenuItem1.DisplayStyle = ToolStripItemDisplayStyle.Text;
toolStripMenuItem1.DropDownItems.AddRange(new ToolStripItem[] { toolStripMenuItem2, toolStripMenuItem3, toolStripMenuItem4 });
toolStripMenuItem1.ImageScaling = ToolStripItemImageScaling.None;
toolStripMenuItem1.ImageTransparentColor = Color.Transparent;
toolStripMenuItem1.Name = "toolStripMenuItem1";
toolStripMenuItem1.Padding = new Padding(0);
toolStripMenuItem1.Size = new Size(42, 24);
toolStripMenuItem1.Text = "Menu";
//
// toolStripMenuItem2
//
toolStripMenuItem2.BackColor = Color.DarkGray;
toolStripMenuItem2.Name = "toolStripMenuItem2";
toolStripMenuItem2.Size = new Size(180, 22);
toolStripMenuItem2.Text = "Save";
toolStripMenuItem2.Click += toolStripMenuItem2_Click;
//
// toolStripMenuItem3
//
toolStripMenuItem3.BackColor = Color.DarkGray;
toolStripMenuItem3.Name = "toolStripMenuItem3";
toolStripMenuItem3.Size = new Size(180, 22);
toolStripMenuItem3.Text = "Reload";
toolStripMenuItem3.Click += toolStripMenuItem3_Click;
//
// toolStripMenuItem4
//
toolStripMenuItem4.BackColor = Color.DarkGray;
toolStripMenuItem4.Name = "toolStripMenuItem4";
toolStripMenuItem4.Size = new Size(180, 22);
toolStripMenuItem4.Text = "Exit";
toolStripMenuItem4.Click += toolStripMenuItem4_Click;
//
// labelToml
//
labelToml.AutoSize = true;
labelToml.BackColor = Color.Transparent;
labelToml.Font = new Font("Segoe UI Semibold", 27.75F, FontStyle.Bold, GraphicsUnit.Point, 0);
labelToml.ForeColor = Color.DimGray;
labelToml.Location = new Point(0, 23);
labelToml.Name = "labelToml";
labelToml.Size = new Size(213, 50);
labelToml.TabIndex = 2;
labelToml.Text = "Toml Editor";
//
// panel2
//
panel2.BackColor = Color.DarkGray;
panel2.Controls.Add(labelToml);
panel2.Location = new Point(12, 12);
panel2.Name = "panel2";
panel2.Size = new Size(218, 100);
panel2.TabIndex = 3;
//
// formEditorToml
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
BackColor = Color.Gray;
ClientSize = new Size(800, 450);
Controls.Add(panel2);
Controls.Add(panel1);
ForeColor = SystemColors.ControlText;
FormBorderStyle = FormBorderStyle.None;
MainMenuStrip = menuStrip1;
Name = "formEditorToml";
Text = "formEditorToml";
FormClosed += formEditorToml_FormClosed;
Load += formEditorToml_Load;
Resize += formEditorToml_Resize;
panel1.ResumeLayout(false);
panel1.PerformLayout();
menuStrip1.ResumeLayout(false);
menuStrip1.PerformLayout();
panel2.ResumeLayout(false);
panel2.PerformLayout();
ResumeLayout(false);
}
#endregion
private Panel panel1;
private RichTextBox richToml;
private MenuStrip menuStrip1;
private Label labelToml;
private Panel panel2;
private ToolStripMenuItem toolStripMenuItem1;
private ToolStripMenuItem toolStripMenuItem2;
private ToolStripMenuItem toolStripMenuItem3;
private ToolStripMenuItem toolStripMenuItem4;
}
}