-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainForm.Designer.cs
More file actions
334 lines (331 loc) · 16.1 KB
/
MainForm.Designer.cs
File metadata and controls
334 lines (331 loc) · 16.1 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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
/* Evrika: Main form designer
* (c) 2019, Petros Kyladitis <http://www.multipetros.gr>
*
* This is free software distributed under the GNU GPL 3, for license details see at license.txt
* file, distributed with this program source, or see at <http://www.gnu.org/licenses/>
*/
namespace Evrika
{
partial class MainForm
{
/// <summary>
/// Designer variable used to keep track of non-visual components.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Disposes resources used by the form.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing) {
if (components != null) {
components.Dispose();
}
}
base.Dispose(disposing);
}
/// <summary>
/// This method is required for Windows Forms designer support.
/// Do not change the method contents inside the source code editor. The Forms designer might
/// not be able to load this method if it was changed manually.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.buttonSearch = new System.Windows.Forms.Button();
this.comboBoxType = new System.Windows.Forms.ComboBox();
this.textBoxFilter = new System.Windows.Forms.TextBox();
this.comboBoxDrive = new System.Windows.Forms.ComboBox();
this.listViewFiles = new System.Windows.Forms.ListView();
this.columnHeaderName = new System.Windows.Forms.ColumnHeader();
this.columnHeaderPath = new System.Windows.Forms.ColumnHeader();
this.menuStripMain = new System.Windows.Forms.MenuStrip();
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.refreshToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.langToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.greekToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.englishToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripStatusLabel3 = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripStatusLabel4 = new System.Windows.Forms.ToolStripStatusLabel();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
this.comboBoxMatch = new System.Windows.Forms.ComboBox();
this.menuStripMain.SuspendLayout();
this.statusStrip1.SuspendLayout();
this.tableLayoutPanel1.SuspendLayout();
this.flowLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// buttonSearch
//
this.buttonSearch.Location = new System.Drawing.Point(439, 3);
this.buttonSearch.Name = "buttonSearch";
this.buttonSearch.Size = new System.Drawing.Size(75, 23);
this.buttonSearch.TabIndex = 3;
this.buttonSearch.UseVisualStyleBackColor = true;
this.buttonSearch.Click += new System.EventHandler(this.ButtonSearchClick);
//
// comboBoxType
//
this.comboBoxType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBoxType.FormattingEnabled = true;
this.comboBoxType.Location = new System.Drawing.Point(658, 3);
this.comboBoxType.Name = "comboBoxType";
this.comboBoxType.Size = new System.Drawing.Size(116, 21);
this.comboBoxType.TabIndex = 5;
//
// textBoxFilter
//
this.textBoxFilter.Location = new System.Drawing.Point(64, 3);
this.textBoxFilter.Name = "textBoxFilter";
this.textBoxFilter.Size = new System.Drawing.Size(369, 20);
this.textBoxFilter.TabIndex = 2;
//
// comboBoxDrive
//
this.comboBoxDrive.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBoxDrive.FormattingEnabled = true;
this.comboBoxDrive.Location = new System.Drawing.Point(3, 3);
this.comboBoxDrive.Name = "comboBoxDrive";
this.comboBoxDrive.Size = new System.Drawing.Size(55, 21);
this.comboBoxDrive.TabIndex = 1;
//
// listViewFiles
//
this.listViewFiles.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeaderName,
this.columnHeaderPath});
this.listViewFiles.Dock = System.Windows.Forms.DockStyle.Fill;
this.listViewFiles.FullRowSelect = true;
this.listViewFiles.GridLines = true;
this.listViewFiles.Location = new System.Drawing.Point(3, 43);
this.listViewFiles.Name = "listViewFiles";
this.listViewFiles.ShowItemToolTips = true;
this.listViewFiles.Size = new System.Drawing.Size(778, 468);
this.listViewFiles.Sorting = System.Windows.Forms.SortOrder.Ascending;
this.listViewFiles.TabIndex = 6;
this.listViewFiles.UseCompatibleStateImageBehavior = false;
this.listViewFiles.View = System.Windows.Forms.View.Details;
this.listViewFiles.DoubleClick += new System.EventHandler(this.ListViewFilesDoubleClick);
//
// columnHeaderName
//
this.columnHeaderName.Text = "";
this.columnHeaderName.Width = 152;
//
// columnHeaderPath
//
this.columnHeaderPath.Text = "";
this.columnHeaderPath.Width = 600;
//
// menuStripMain
//
this.menuStripMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.fileToolStripMenuItem,
this.langToolStripMenuItem,
this.aboutToolStripMenuItem});
this.menuStripMain.Location = new System.Drawing.Point(0, 0);
this.menuStripMain.Name = "menuStripMain";
this.menuStripMain.Size = new System.Drawing.Size(784, 24);
this.menuStripMain.TabIndex = 0;
this.menuStripMain.Text = "menuStrip1";
//
// fileToolStripMenuItem
//
this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.refreshToolStripMenuItem,
this.exitToolStripMenuItem});
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
this.fileToolStripMenuItem.Size = new System.Drawing.Size(35, 20);
this.fileToolStripMenuItem.Text = "file";
//
// refreshToolStripMenuItem
//
this.refreshToolStripMenuItem.Name = "refreshToolStripMenuItem";
this.refreshToolStripMenuItem.Size = new System.Drawing.Size(135, 22);
this.refreshToolStripMenuItem.Text = "refresh";
this.refreshToolStripMenuItem.Click += new System.EventHandler(this.RefreshToolStripMenuItemClick);
this.refreshToolStripMenuItem.MouseEnter += new System.EventHandler(this.RefreshToolStripMenuItemMouseEnter);
this.refreshToolStripMenuItem.MouseLeave += new System.EventHandler(this.ToolStripMenuItemMouseLeave);
//
// exitToolStripMenuItem
//
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
this.exitToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Q)));
this.exitToolStripMenuItem.Size = new System.Drawing.Size(135, 22);
this.exitToolStripMenuItem.Text = "exit";
this.exitToolStripMenuItem.Click += new System.EventHandler(this.ExitToolStripMenuItemClick);
this.exitToolStripMenuItem.MouseEnter += new System.EventHandler(this.ExitToolStripMenuItemMouseEnter);
this.exitToolStripMenuItem.MouseLeave += new System.EventHandler(this.ToolStripMenuItemMouseLeave);
//
// langToolStripMenuItem
//
this.langToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.greekToolStripMenuItem,
this.englishToolStripMenuItem});
this.langToolStripMenuItem.Name = "langToolStripMenuItem";
this.langToolStripMenuItem.Size = new System.Drawing.Size(42, 20);
this.langToolStripMenuItem.Text = "lang";
this.langToolStripMenuItem.MouseEnter += new System.EventHandler(this.LangToolStripMenuItemMouseEnter);
this.langToolStripMenuItem.MouseLeave += new System.EventHandler(this.ToolStripMenuItemMouseLeave);
//
// greekToolStripMenuItem
//
this.greekToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("greekToolStripMenuItem.Image")));
this.greekToolStripMenuItem.Name = "greekToolStripMenuItem";
this.greekToolStripMenuItem.Size = new System.Drawing.Size(121, 22);
this.greekToolStripMenuItem.Text = "Ελληνικά";
this.greekToolStripMenuItem.Click += new System.EventHandler(this.GreekToolStripMenuItemClick);
//
// englishToolStripMenuItem
//
this.englishToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("englishToolStripMenuItem.Image")));
this.englishToolStripMenuItem.Name = "englishToolStripMenuItem";
this.englishToolStripMenuItem.Size = new System.Drawing.Size(121, 22);
this.englishToolStripMenuItem.Text = "English";
this.englishToolStripMenuItem.Click += new System.EventHandler(this.EnglishToolStripMenuItemClick);
//
// aboutToolStripMenuItem
//
this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
this.aboutToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F1;
this.aboutToolStripMenuItem.Size = new System.Drawing.Size(50, 20);
this.aboutToolStripMenuItem.Text = "about";
this.aboutToolStripMenuItem.Click += new System.EventHandler(this.AboutToolStripMenuItemClick);
this.aboutToolStripMenuItem.MouseEnter += new System.EventHandler(this.AboutToolStripMenuItemMouseEnter);
this.aboutToolStripMenuItem.MouseLeave += new System.EventHandler(this.ToolStripMenuItemMouseLeave);
//
// statusStrip1
//
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripStatusLabel1,
this.toolStripStatusLabel2,
this.toolStripStatusLabel3,
this.toolStripStatusLabel4});
this.statusStrip1.Location = new System.Drawing.Point(0, 538);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.ShowItemToolTips = true;
this.statusStrip1.Size = new System.Drawing.Size(784, 24);
this.statusStrip1.TabIndex = 1;
this.statusStrip1.Text = "statusStrip1";
//
// toolStripStatusLabel1
//
this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
this.toolStripStatusLabel1.Size = new System.Drawing.Size(118, 19);
this.toolStripStatusLabel1.Text = "toolStripStatusLabel1";
//
// toolStripStatusLabel2
//
this.toolStripStatusLabel2.BorderSides = ((System.Windows.Forms.ToolStripStatusLabelBorderSides)((System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right)));
this.toolStripStatusLabel2.BorderStyle = System.Windows.Forms.Border3DStyle.Etched;
this.toolStripStatusLabel2.Name = "toolStripStatusLabel2";
this.toolStripStatusLabel2.Size = new System.Drawing.Size(122, 19);
this.toolStripStatusLabel2.Text = "toolStripStatusLabel2";
//
// toolStripStatusLabel3
//
this.toolStripStatusLabel3.Name = "toolStripStatusLabel3";
this.toolStripStatusLabel3.Size = new System.Drawing.Size(118, 19);
this.toolStripStatusLabel3.Text = "toolStripStatusLabel3";
//
// toolStripStatusLabel4
//
this.toolStripStatusLabel4.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Left;
this.toolStripStatusLabel4.Name = "toolStripStatusLabel4";
this.toolStripStatusLabel4.Size = new System.Drawing.Size(4, 19);
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.ColumnCount = 1;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.Controls.Add(this.listViewFiles, 0, 1);
this.tableLayoutPanel1.Controls.Add(this.flowLayoutPanel1, 0, 0);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 24);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 2;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 40F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
this.tableLayoutPanel1.Size = new System.Drawing.Size(784, 514);
this.tableLayoutPanel1.TabIndex = 2;
//
// flowLayoutPanel1
//
this.flowLayoutPanel1.Controls.Add(this.comboBoxDrive);
this.flowLayoutPanel1.Controls.Add(this.textBoxFilter);
this.flowLayoutPanel1.Controls.Add(this.buttonSearch);
this.flowLayoutPanel1.Controls.Add(this.comboBoxMatch);
this.flowLayoutPanel1.Controls.Add(this.comboBoxType);
this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.flowLayoutPanel1.Location = new System.Drawing.Point(3, 3);
this.flowLayoutPanel1.Name = "flowLayoutPanel1";
this.flowLayoutPanel1.Size = new System.Drawing.Size(778, 34);
this.flowLayoutPanel1.TabIndex = 0;
this.flowLayoutPanel1.WrapContents = false;
//
// comboBoxMatch
//
this.comboBoxMatch.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBoxMatch.FormattingEnabled = true;
this.comboBoxMatch.Location = new System.Drawing.Point(520, 3);
this.comboBoxMatch.Name = "comboBoxMatch";
this.comboBoxMatch.Size = new System.Drawing.Size(132, 21);
this.comboBoxMatch.TabIndex = 6;
//
// MainForm
//
this.AcceptButton = this.buttonSearch;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(784, 562);
this.Controls.Add(this.tableLayoutPanel1);
this.Controls.Add(this.statusStrip1);
this.Controls.Add(this.menuStripMain);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MainMenuStrip = this.menuStripMain;
this.MinimumSize = new System.Drawing.Size(800, 600);
this.Name = "MainForm";
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainFormFormClosed);
this.Load += new System.EventHandler(this.MainFormLoad);
this.menuStripMain.ResumeLayout(false);
this.menuStripMain.PerformLayout();
this.statusStrip1.ResumeLayout(false);
this.statusStrip1.PerformLayout();
this.tableLayoutPanel1.ResumeLayout(false);
this.flowLayoutPanel1.ResumeLayout(false);
this.flowLayoutPanel1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel4;
private System.Windows.Forms.ToolStripMenuItem refreshToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem englishToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem greekToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem langToolStripMenuItem;
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1;
private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel2;
private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel3;
private System.Windows.Forms.StatusStrip statusStrip1;
private System.Windows.Forms.TextBox textBoxFilter;
private System.Windows.Forms.MenuStrip menuStripMain;
private System.Windows.Forms.ListView listViewFiles;
private System.Windows.Forms.ColumnHeader columnHeaderName;
private System.Windows.Forms.ColumnHeader columnHeaderPath;
private System.Windows.Forms.Button buttonSearch;
private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
private System.Windows.Forms.ComboBox comboBoxType;
private System.Windows.Forms.ComboBox comboBoxDrive;
private System.Windows.Forms.ComboBox comboBoxMatch;
}
}