forked from jarrettv/ChapterGrabber
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathStreamSelectDialog.Designer.cs
215 lines (209 loc) · 11 KB
/
StreamSelectDialog.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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
namespace JarrettVance.ChapterTools
{
partial class StreamSelectDialog
{
/// <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.btnOK = new System.Windows.Forms.Button();
this.listBox1 = new System.Windows.Forms.ListBox();
this.lblCounts = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
this.checkBoxLessThan20mins = new System.Windows.Forms.CheckBox();
this.checkBoxLessThan5 = new System.Windows.Forms.CheckBox();
this.checkBoxGreaterThan50 = new System.Windows.Forms.CheckBox();
this.btnCancel = new System.Windows.Forms.Button();
this.flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel();
this.flowLayoutPanel1.SuspendLayout();
this.flowLayoutPanel2.SuspendLayout();
this.SuspendLayout();
//
// btnOK
//
this.btnOK.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
this.btnOK.Location = new System.Drawing.Point(581, 0);
this.btnOK.Margin = new System.Windows.Forms.Padding(4, 0, 0, 0);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(80, 30);
this.btnOK.TabIndex = 1;
this.btnOK.Text = "OK";
this.btnOK.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// listBox1
//
this.listBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.listBox1.Font = new System.Drawing.Font("Segoe UI", 9.5F);
this.listBox1.FormattingEnabled = true;
this.listBox1.HorizontalScrollbar = true;
this.listBox1.ItemHeight = 17;
this.listBox1.Location = new System.Drawing.Point(10, 10);
this.listBox1.Name = "listBox1";
this.listBox1.Size = new System.Drawing.Size(664, 276);
this.listBox1.TabIndex = 2;
this.listBox1.DoubleClick += new System.EventHandler(this.btnOK_Click);
//
// lblCounts
//
this.lblCounts.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.lblCounts.Cursor = System.Windows.Forms.Cursors.Default;
this.lblCounts.Location = new System.Drawing.Point(542, 297);
this.lblCounts.Name = "lblCounts";
this.lblCounts.Size = new System.Drawing.Size(130, 16);
this.lblCounts.TabIndex = 9;
this.lblCounts.Text = "loading...";
this.lblCounts.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// label1
//
this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label1.Location = new System.Drawing.Point(10, 297);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(40, 16);
this.label1.TabIndex = 8;
this.label1.Text = "Hide";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// flowLayoutPanel1
//
this.flowLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.flowLayoutPanel1.Controls.Add(this.checkBoxLessThan20mins);
this.flowLayoutPanel1.Controls.Add(this.checkBoxLessThan5);
this.flowLayoutPanel1.Controls.Add(this.checkBoxGreaterThan50);
this.flowLayoutPanel1.Location = new System.Drawing.Point(50, 293);
this.flowLayoutPanel1.Name = "flowLayoutPanel1";
this.flowLayoutPanel1.Size = new System.Drawing.Size(489, 25);
this.flowLayoutPanel1.TabIndex = 7;
//
// checkBoxLessThan20mins
//
this.checkBoxLessThan20mins.AutoSize = true;
this.checkBoxLessThan20mins.Checked = true;
this.checkBoxLessThan20mins.CheckState = System.Windows.Forms.CheckState.Checked;
this.checkBoxLessThan20mins.Location = new System.Drawing.Point(3, 3);
this.checkBoxLessThan20mins.Name = "checkBoxLessThan20mins";
this.checkBoxLessThan20mins.Size = new System.Drawing.Size(119, 19);
this.checkBoxLessThan20mins.TabIndex = 3;
this.checkBoxLessThan20mins.Text = "Less than 20 mins";
this.checkBoxLessThan20mins.UseVisualStyleBackColor = true;
this.checkBoxLessThan20mins.CheckedChanged += new System.EventHandler(this.checkBox_CheckedChanged);
//
// checkBoxLessThan5
//
this.checkBoxLessThan5.AutoSize = true;
this.checkBoxLessThan5.Checked = true;
this.checkBoxLessThan5.CheckState = System.Windows.Forms.CheckState.Checked;
this.checkBoxLessThan5.Location = new System.Drawing.Point(128, 3);
this.checkBoxLessThan5.Name = "checkBoxLessThan5";
this.checkBoxLessThan5.Size = new System.Drawing.Size(132, 19);
this.checkBoxLessThan5.TabIndex = 6;
this.checkBoxLessThan5.Text = "Less than 5 chapters";
this.checkBoxLessThan5.UseVisualStyleBackColor = true;
this.checkBoxLessThan5.CheckedChanged += new System.EventHandler(this.checkBox_CheckedChanged);
//
// checkBoxGreaterThan50
//
this.checkBoxGreaterThan50.AutoSize = true;
this.checkBoxGreaterThan50.Checked = true;
this.checkBoxGreaterThan50.CheckState = System.Windows.Forms.CheckState.Checked;
this.checkBoxGreaterThan50.Location = new System.Drawing.Point(266, 3);
this.checkBoxGreaterThan50.Name = "checkBoxGreaterThan50";
this.checkBoxGreaterThan50.Size = new System.Drawing.Size(154, 19);
this.checkBoxGreaterThan50.TabIndex = 7;
this.checkBoxGreaterThan50.Text = "Greater than 50 chapters";
this.checkBoxGreaterThan50.UseVisualStyleBackColor = true;
this.checkBoxGreaterThan50.CheckedChanged += new System.EventHandler(this.checkBox_CheckedChanged);
//
// btnCancel
//
this.btnCancel.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
this.btnCancel.AutoSize = true;
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.Location = new System.Drawing.Point(497, 0);
this.btnCancel.Margin = new System.Windows.Forms.Padding(4, 0, 0, 0);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(80, 30);
this.btnCancel.TabIndex = 10;
this.btnCancel.Text = "Cancel";
this.btnCancel.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
this.btnCancel.UseVisualStyleBackColor = true;
//
// flowLayoutPanel2
//
this.flowLayoutPanel2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.flowLayoutPanel2.Controls.Add(this.btnOK);
this.flowLayoutPanel2.Controls.Add(this.btnCancel);
this.flowLayoutPanel2.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft;
this.flowLayoutPanel2.Location = new System.Drawing.Point(14, 322);
this.flowLayoutPanel2.Margin = new System.Windows.Forms.Padding(0);
this.flowLayoutPanel2.Name = "flowLayoutPanel2";
this.flowLayoutPanel2.Size = new System.Drawing.Size(661, 30);
this.flowLayoutPanel2.TabIndex = 11;
//
// StreamSelectDialog
//
this.AcceptButton = this.btnOK;
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnCancel;
this.ClientSize = new System.Drawing.Size(684, 361);
this.ControlBox = false;
this.Controls.Add(this.flowLayoutPanel2);
this.Controls.Add(this.lblCounts);
this.Controls.Add(this.label1);
this.Controls.Add(this.flowLayoutPanel1);
this.Controls.Add(this.listBox1);
this.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "StreamSelectDialog";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Select Stream";
this.flowLayoutPanel1.ResumeLayout(false);
this.flowLayoutPanel1.PerformLayout();
this.flowLayoutPanel2.ResumeLayout(false);
this.flowLayoutPanel2.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.ListBox listBox1;
private System.Windows.Forms.Label lblCounts;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1;
private System.Windows.Forms.CheckBox checkBoxLessThan20mins;
private System.Windows.Forms.CheckBox checkBoxLessThan5;
private System.Windows.Forms.CheckBox checkBoxGreaterThan50;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel2;
}
}