-
Notifications
You must be signed in to change notification settings - Fork 1
/
VideoChooserDialog.Designer.cs
136 lines (130 loc) · 6.61 KB
/
VideoChooserDialog.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
namespace openu_video_fetcher
{
partial class VideoChooserDialog
{
/// <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.formLayout = new System.Windows.Forms.TableLayoutPanel();
this.viewLayout = new System.Windows.Forms.TableLayoutPanel();
this.downloadPicker = new System.Windows.Forms.CheckedListBox();
this.downloadPickedLabel = new System.Windows.Forms.Label();
this.chooseButton = new System.Windows.Forms.Button();
this.formLayout.SuspendLayout();
this.viewLayout.SuspendLayout();
this.SuspendLayout();
//
// formLayout
//
this.formLayout.AutoSize = true;
this.formLayout.ColumnCount = 1;
this.formLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.formLayout.Controls.Add(this.viewLayout, 0, 0);
this.formLayout.Controls.Add(this.chooseButton, 0, 1);
this.formLayout.Dock = System.Windows.Forms.DockStyle.Fill;
this.formLayout.Location = new System.Drawing.Point(0, 0);
this.formLayout.Name = "formLayout";
this.formLayout.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
this.formLayout.RowCount = 2;
this.formLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.formLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 45F));
this.formLayout.Size = new System.Drawing.Size(271, 362);
this.formLayout.TabIndex = 0;
//
// viewLayout
//
this.viewLayout.AutoSize = true;
this.viewLayout.ColumnCount = 2;
this.viewLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.viewLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
this.viewLayout.Controls.Add(this.downloadPicker, 1, 0);
this.viewLayout.Controls.Add(this.downloadPickedLabel, 0, 0);
this.viewLayout.Dock = System.Windows.Forms.DockStyle.Fill;
this.viewLayout.Location = new System.Drawing.Point(3, 3);
this.viewLayout.Name = "viewLayout";
this.viewLayout.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
this.viewLayout.RowCount = 1;
this.viewLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.viewLayout.Size = new System.Drawing.Size(265, 311);
this.viewLayout.TabIndex = 1;
//
// downloadPicker
//
this.downloadPicker.CheckOnClick = true;
this.downloadPicker.Dock = System.Windows.Forms.DockStyle.Fill;
this.downloadPicker.FormattingEnabled = true;
this.downloadPicker.Location = new System.Drawing.Point(3, 3);
this.downloadPicker.Name = "downloadPicker";
this.downloadPicker.Size = new System.Drawing.Size(138, 305);
this.downloadPicker.TabIndex = 3;
//
// downloadPickedLabel
//
this.downloadPickedLabel.AutoSize = true;
this.downloadPickedLabel.Location = new System.Drawing.Point(147, 10);
this.downloadPickedLabel.Margin = new System.Windows.Forms.Padding(3, 10, 3, 0);
this.downloadPickedLabel.Name = "downloadPickedLabel";
this.downloadPickedLabel.Size = new System.Drawing.Size(115, 13);
this.downloadPickedLabel.TabIndex = 0;
this.downloadPickedLabel.Text = "בחר הרצאות להורדה:";
//
// chooseButton
//
this.chooseButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.chooseButton.Dock = System.Windows.Forms.DockStyle.Fill;
this.chooseButton.Location = new System.Drawing.Point(3, 320);
this.chooseButton.Name = "chooseButton";
this.chooseButton.Size = new System.Drawing.Size(265, 39);
this.chooseButton.TabIndex = 2;
this.chooseButton.Text = "button1";
this.chooseButton.UseVisualStyleBackColor = true;
//
// VideoChooserDialog
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSize = true;
this.ClientSize = new System.Drawing.Size(271, 362);
this.Controls.Add(this.formLayout);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
this.Name = "VideoChooserDialog";
this.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
this.Text = "Download Picker";
this.TopMost = true;
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.VideoChooserDialog_FormClosing);
this.Load += new System.EventHandler(this.VideoChooserDialog_Load);
this.formLayout.ResumeLayout(false);
this.formLayout.PerformLayout();
this.viewLayout.ResumeLayout(false);
this.viewLayout.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TableLayoutPanel formLayout;
private System.Windows.Forms.TableLayoutPanel viewLayout;
private System.Windows.Forms.CheckedListBox downloadPicker;
private System.Windows.Forms.Label downloadPickedLabel;
private System.Windows.Forms.Button chooseButton;
}
}