-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm1.Designer.cs
146 lines (139 loc) · 6.18 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
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
namespace CodecChecker
{
partial class Form1
{
/// <summary>
/// Erforderliche Designervariable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Verwendete Ressourcen bereinigen.
/// </summary>
/// <param name="disposing">True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Vom Windows Form-Designer generierter Code
/// <summary>
/// Erforderliche Methode für die Designerunterstützung.
/// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
/// </summary>
private void InitializeComponent()
{
this.lvVideoCodec = new System.Windows.Forms.ListView();
this.tbScanFolderPath = new System.Windows.Forms.TextBox();
this.bScan = new System.Windows.Forms.Button();
this.cbFiletypeFilter = new System.Windows.Forms.ComboBox();
this.cbCodecFilter = new System.Windows.Forms.ComboBox();
this.lScanFolderPath = new System.Windows.Forms.Label();
this.lFiletypeFilter = new System.Windows.Forms.Label();
this.lCodecFilter = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// lvVideoCodec
//
this.lvVideoCodec.FullRowSelect = true;
this.lvVideoCodec.GridLines = true;
this.lvVideoCodec.HideSelection = false;
this.lvVideoCodec.Location = new System.Drawing.Point(12, 38);
this.lvVideoCodec.Name = "lvVideoCodec";
this.lvVideoCodec.RightToLeft = System.Windows.Forms.RightToLeft.No;
this.lvVideoCodec.Size = new System.Drawing.Size(1163, 419);
this.lvVideoCodec.TabIndex = 0;
this.lvVideoCodec.UseCompatibleStateImageBehavior = false;
//
// tbScanFolderPath
//
this.tbScanFolderPath.Location = new System.Drawing.Point(76, 12);
this.tbScanFolderPath.Name = "tbScanFolderPath";
this.tbScanFolderPath.Size = new System.Drawing.Size(1018, 20);
this.tbScanFolderPath.TabIndex = 1;
//
// bScan
//
this.bScan.Location = new System.Drawing.Point(1100, 10);
this.bScan.Name = "bScan";
this.bScan.Size = new System.Drawing.Size(75, 23);
this.bScan.TabIndex = 3;
this.bScan.Text = "Scan";
this.bScan.UseVisualStyleBackColor = true;
this.bScan.Click += new System.EventHandler(this.bScan_Click);
//
// cbFiletypeFilter
//
this.cbFiletypeFilter.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cbFiletypeFilter.Location = new System.Drawing.Point(64, 463);
this.cbFiletypeFilter.Name = "cbFiletypeFilter";
this.cbFiletypeFilter.Size = new System.Drawing.Size(121, 21);
this.cbFiletypeFilter.TabIndex = 4;
//
// cbCodecFilter
//
this.cbCodecFilter.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cbCodecFilter.Location = new System.Drawing.Point(279, 463);
this.cbCodecFilter.Name = "cbCodecFilter";
this.cbCodecFilter.Size = new System.Drawing.Size(121, 21);
this.cbCodecFilter.TabIndex = 5;
//
// lScanFolderPath
//
this.lScanFolderPath.AutoSize = true;
this.lScanFolderPath.Location = new System.Drawing.Point(9, 15);
this.lScanFolderPath.Name = "lScanFolderPath";
this.lScanFolderPath.Size = new System.Drawing.Size(61, 13);
this.lScanFolderPath.TabIndex = 2;
this.lScanFolderPath.Text = "Scanfolder:";
//
// lFiletypeFilter
//
this.lFiletypeFilter.AutoSize = true;
this.lFiletypeFilter.Location = new System.Drawing.Point(12, 466);
this.lFiletypeFilter.Name = "lFiletypeFilter";
this.lFiletypeFilter.Size = new System.Drawing.Size(46, 13);
this.lFiletypeFilter.TabIndex = 6;
this.lFiletypeFilter.Text = "Filetype:";
//
// lCodecFilter
//
this.lCodecFilter.AutoSize = true;
this.lCodecFilter.Location = new System.Drawing.Point(232, 466);
this.lCodecFilter.Name = "lCodecFilter";
this.lCodecFilter.Size = new System.Drawing.Size(41, 13);
this.lCodecFilter.TabIndex = 7;
this.lCodecFilter.Text = "Codec:";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1187, 496);
this.Controls.Add(this.lCodecFilter);
this.Controls.Add(this.lFiletypeFilter);
this.Controls.Add(this.cbCodecFilter);
this.Controls.Add(this.cbFiletypeFilter);
this.Controls.Add(this.bScan);
this.Controls.Add(this.lScanFolderPath);
this.Controls.Add(this.tbScanFolderPath);
this.Controls.Add(this.lvVideoCodec);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ListView lvVideoCodec;
private System.Windows.Forms.TextBox tbScanFolderPath;
private System.Windows.Forms.Button bScan;
private System.Windows.Forms.ComboBox cbFiletypeFilter;
private System.Windows.Forms.ComboBox cbCodecFilter;
private System.Windows.Forms.Label lScanFolderPath;
private System.Windows.Forms.Label lFiletypeFilter;
private System.Windows.Forms.Label lCodecFilter;
}
}