-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm1.Designer.cs
More file actions
221 lines (216 loc) · 8.59 KB
/
Form1.Designer.cs
File metadata and controls
221 lines (216 loc) · 8.59 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
namespace SFXFinder
{
partial class Form1
{
/// <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()
{
ListViewItem listViewItem1 = new ListViewItem("");
ListViewItem listViewItem2 = new ListViewItem("");
ListViewItem listViewItem3 = new ListViewItem("");
ListViewItem listViewItem4 = new ListViewItem("");
ListViewItem listViewItem5 = new ListViewItem("");
ListViewItem listViewItem6 = new ListViewItem("");
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
searchBox = new TextBox();
label1 = new Label();
sfxlist = new ListView();
browse = new Button();
MusicPath = new FolderBrowserDialog();
stop = new Button();
play = new Button();
filterList = new CheckedListBox();
Name_beautification = new CheckBox();
label3 = new Label();
progressBar1 = new ProgressBar();
SuspendLayout();
//
// searchBox
//
searchBox.Location = new Point(68, 17);
searchBox.MinimumSize = new Size(208, 23);
searchBox.Name = "searchBox";
searchBox.Size = new Size(265, 23);
searchBox.TabIndex = 0;
searchBox.TextChanged += searchBox_TextChanged;
//
// label1
//
label1.AutoSize = true;
label1.Font = new Font("Segoe UI", 10F);
label1.ForeColor = Color.Black;
label1.Location = new Point(12, 18);
label1.Name = "label1";
label1.Size = new Size(52, 19);
label1.TabIndex = 1;
label1.Text = "Search:";
//
// sfxlist
//
sfxlist.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
sfxlist.BorderStyle = BorderStyle.None;
sfxlist.ForeColor = SystemColors.Desktop;
sfxlist.FullRowSelect = true;
sfxlist.GridLines = true;
listViewItem1.StateImageIndex = 0;
listViewItem2.StateImageIndex = 0;
listViewItem3.StateImageIndex = 0;
listViewItem4.StateImageIndex = 0;
listViewItem5.StateImageIndex = 0;
listViewItem6.StateImageIndex = 0;
sfxlist.Items.AddRange(new ListViewItem[] { listViewItem1, listViewItem2, listViewItem3, listViewItem4, listViewItem5, listViewItem6 });
sfxlist.Location = new Point(0, 103);
sfxlist.Name = "sfxlist";
sfxlist.Size = new Size(622, 438);
sfxlist.TabIndex = 3;
sfxlist.UseCompatibleStateImageBehavior = false;
sfxlist.View = View.Details;
sfxlist.MouseClick += sfxlist_MouseClick;
sfxlist.MouseDoubleClick += sfxlist_MouseDoubleClick;
//
// browse
//
browse.BackColor = Color.FloralWhite;
browse.FlatAppearance.BorderColor = SystemColors.ActiveCaption;
browse.Font = new Font("Segoe UI", 9F, FontStyle.Bold);
browse.ForeColor = Color.FromArgb(0, 0, 64);
browse.Location = new Point(355, 12);
browse.Name = "browse";
browse.Size = new Size(167, 31);
browse.TabIndex = 4;
browse.Text = "Open folder";
browse.UseVisualStyleBackColor = false;
browse.Click += browse_Click;
//
// MusicPath
//
MusicPath.Description = "Open Your Music Library Path";
//
// stop
//
stop.BackColor = SystemColors.ButtonHighlight;
stop.ForeColor = Color.Maroon;
stop.Location = new Point(68, 58);
stop.Name = "stop";
stop.Size = new Size(63, 23);
stop.TabIndex = 9;
stop.Text = "Stop SFX";
stop.UseVisualStyleBackColor = false;
stop.Click += stop_Click;
//
// play
//
play.ForeColor = Color.Green;
play.Location = new Point(12, 58);
play.Name = "play";
play.Size = new Size(50, 23);
play.TabIndex = 10;
play.Text = "Play";
play.UseVisualStyleBackColor = true;
play.Click += play_Click;
//
// filterList
//
filterList.Anchor = AnchorStyles.Top | AnchorStyles.Right;
filterList.BackColor = SystemColors.Control;
filterList.BorderStyle = BorderStyle.None;
filterList.FormattingEnabled = true;
filterList.Items.AddRange(new object[] { "mp3", "wav", "ogg" });
filterList.Location = new Point(542, 27);
filterList.Name = "filterList";
filterList.Size = new Size(58, 54);
filterList.TabIndex = 15;
filterList.ItemCheck += filterList_ItemCheck;
//
// Name_beautification
//
Name_beautification.AutoSize = true;
Name_beautification.Checked = true;
Name_beautification.CheckState = CheckState.Checked;
Name_beautification.Location = new Point(146, 62);
Name_beautification.Name = "Name_beautification";
Name_beautification.Size = new Size(137, 19);
Name_beautification.TabIndex = 17;
Name_beautification.Text = "Name beautification ";
Name_beautification.UseVisualStyleBackColor = true;
Name_beautification.CheckedChanged += Name_beautification_CheckedChanged;
//
// label3
//
label3.Anchor = AnchorStyles.Top | AnchorStyles.Right;
label3.AutoSize = true;
label3.Font = new Font("Segoe UI", 9F, FontStyle.Bold);
label3.Location = new Point(542, 9);
label3.Name = "label3";
label3.Size = new Size(36, 15);
label3.TabIndex = 18;
label3.Text = "Filter";
//
// progressBar1
//
progressBar1.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
progressBar1.ForeColor = SystemColors.ControlDarkDark;
progressBar1.Location = new Point(0, 100);
progressBar1.Name = "progressBar1";
progressBar1.Size = new Size(622, 5);
progressBar1.Step = 20;
progressBar1.TabIndex = 20;
progressBar1.Visible = false;
//
// Form1
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(622, 541);
Controls.Add(progressBar1);
Controls.Add(label3);
Controls.Add(Name_beautification);
Controls.Add(filterList);
Controls.Add(play);
Controls.Add(stop);
Controls.Add(browse);
Controls.Add(sfxlist);
Controls.Add(label1);
Controls.Add(searchBox);
Icon = (Icon)resources.GetObject("$this.Icon");
MinimumSize = new Size(630, 580);
Name = "Form1";
Text = "SFX Finder";
Load += Form1_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private TextBox searchBox;
private Label label1;
private ListView sfxlist;
private Button browse;
private FolderBrowserDialog MusicPath;
private Button stop;
private Button play;
private CheckedListBox filterList;
private CheckBox Name_beautification;
private Label label3;
private ProgressBar progressBar1;
}
}