-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainForm.Designer.cs
198 lines (187 loc) · 9.16 KB
/
MainForm.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
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
/*
Copyright 2022 Mark Lagodych
This file is part of Exquad.
Exquad is free software: you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the Free Software
Foundation, either version 3 of the License, or (at your option) any later
version.
Exquad is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with
Exquad. If not, see <https://www.gnu.org/licenses/>.
*/
namespace Exquad
{
partial class MainForm
{
/// <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()
{
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.splitContainerLeft = new System.Windows.Forms.SplitContainer();
this.splitContainerRight = new System.Windows.Forms.SplitContainer();
this.fileExplorer1 = new Exquad.FileExplorer();
this.fileExplorer2 = new Exquad.FileExplorer();
this.fileExplorer3 = new Exquad.FileExplorer();
this.fileExplorer4 = new Exquad.FileExplorer();
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.splitContainerLeft)).BeginInit();
this.splitContainerLeft.Panel1.SuspendLayout();
this.splitContainerLeft.Panel2.SuspendLayout();
this.splitContainerLeft.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.splitContainerRight)).BeginInit();
this.splitContainerRight.Panel1.SuspendLayout();
this.splitContainerRight.Panel2.SuspendLayout();
this.splitContainerRight.SuspendLayout();
this.SuspendLayout();
//
// splitContainer1
//
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer1.Location = new System.Drawing.Point(0, 0);
this.splitContainer1.Name = "splitContainer1";
//
// splitContainer1.Panel1
//
this.splitContainer1.Panel1.Controls.Add(this.splitContainerLeft);
//
// splitContainer1.Panel2
//
this.splitContainer1.Panel2.Controls.Add(this.splitContainerRight);
this.splitContainer1.Size = new System.Drawing.Size(984, 761);
this.splitContainer1.SplitterDistance = 490;
this.splitContainer1.TabIndex = 6;
//
// splitContainerLeft
//
this.splitContainerLeft.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.splitContainerLeft.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainerLeft.Location = new System.Drawing.Point(0, 0);
this.splitContainerLeft.Name = "splitContainerLeft";
this.splitContainerLeft.Orientation = System.Windows.Forms.Orientation.Horizontal;
//
// splitContainerLeft.Panel1
//
this.splitContainerLeft.Panel1.Controls.Add(this.fileExplorer1);
//
// splitContainerLeft.Panel2
//
this.splitContainerLeft.Panel2.Controls.Add(this.fileExplorer3);
this.splitContainerLeft.Size = new System.Drawing.Size(490, 761);
this.splitContainerLeft.SplitterDistance = 380;
this.splitContainerLeft.TabIndex = 0;
this.splitContainerLeft.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.splitContainerLeft_SplitterMoved);
//
// splitContainerRight
//
this.splitContainerRight.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.splitContainerRight.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainerRight.Location = new System.Drawing.Point(0, 0);
this.splitContainerRight.Name = "splitContainerRight";
this.splitContainerRight.Orientation = System.Windows.Forms.Orientation.Horizontal;
//
// splitContainerRight.Panel1
//
this.splitContainerRight.Panel1.Controls.Add(this.fileExplorer2);
//
// splitContainerRight.Panel2
//
this.splitContainerRight.Panel2.Controls.Add(this.fileExplorer4);
this.splitContainerRight.Size = new System.Drawing.Size(490, 761);
this.splitContainerRight.SplitterDistance = 380;
this.splitContainerRight.TabIndex = 0;
this.splitContainerRight.SplitterMoved += new System.Windows.Forms.SplitterEventHandler(this.splitContainerRight_SplitterMoved);
//
// fileExplorer1
//
this.fileExplorer1.Dock = System.Windows.Forms.DockStyle.Fill;
this.fileExplorer1.Location = new System.Drawing.Point(0, 0);
this.fileExplorer1.Name = "fileExplorer1";
this.fileExplorer1.Size = new System.Drawing.Size(488, 378);
this.fileExplorer1.TabIndex = 0;
this.fileExplorer1.Text = "fileExplorer1";
//
// fileExplorer2
//
this.fileExplorer2.Dock = System.Windows.Forms.DockStyle.Fill;
this.fileExplorer2.Location = new System.Drawing.Point(0, 0);
this.fileExplorer2.Name = "fileExplorer2";
this.fileExplorer2.Size = new System.Drawing.Size(488, 378);
this.fileExplorer2.TabIndex = 0;
this.fileExplorer2.Text = "fileExplorer2";
//
// fileExplorer3
//
this.fileExplorer3.Dock = System.Windows.Forms.DockStyle.Fill;
this.fileExplorer3.Location = new System.Drawing.Point(0, 0);
this.fileExplorer3.Name = "fileExplorer3";
this.fileExplorer3.Size = new System.Drawing.Size(488, 375);
this.fileExplorer3.TabIndex = 0;
this.fileExplorer3.Text = "fileExplorer3";
//
// fileExplorer4
//
this.fileExplorer4.Dock = System.Windows.Forms.DockStyle.Fill;
this.fileExplorer4.Location = new System.Drawing.Point(0, 0);
this.fileExplorer4.Name = "fileExplorer4";
this.fileExplorer4.Size = new System.Drawing.Size(488, 375);
this.fileExplorer4.TabIndex = 0;
this.fileExplorer4.Text = "fileExplorer4";
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(984, 761);
this.Controls.Add(this.splitContainer1);
this.MinimumSize = new System.Drawing.Size(640, 480);
this.Name = "MainForm";
this.Text = "Exquad";
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
this.splitContainer1.ResumeLayout(false);
this.splitContainerLeft.Panel1.ResumeLayout(false);
this.splitContainerLeft.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitContainerLeft)).EndInit();
this.splitContainerLeft.ResumeLayout(false);
this.splitContainerRight.Panel1.ResumeLayout(false);
this.splitContainerRight.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitContainerRight)).EndInit();
this.splitContainerRight.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.SplitContainer splitContainer1;
private System.Windows.Forms.SplitContainer splitContainerLeft;
private System.Windows.Forms.SplitContainer splitContainerRight;
private FileExplorer fileExplorer1;
private FileExplorer fileExplorer3;
private FileExplorer fileExplorer2;
private FileExplorer fileExplorer4;
}
}