-
Notifications
You must be signed in to change notification settings - Fork 0
/
Settings.Designer.cs
140 lines (134 loc) · 5.47 KB
/
Settings.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
namespace RawDataDecoder
{
partial class Settings
{
/// <summary>
///Gerekli tasarımcı değişkeni.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
///Kullanılan tüm kaynakları temizleyin.
/// </summary>
///<param name="disposing">yönetilen kaynaklar dispose edilmeliyse doğru; aksi halde yanlış.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Bileşen Tasarımcısı üretimi kod
/// <summary>
/// Tasarımcı desteği için gerekli metot - bu metodun
///içeriğini kod düzenleyici ile değiştirmeyin.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.widthValue = new System.Windows.Forms.TextBox();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.heightValue = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.format = new System.Windows.Forms.ComboBox();
this.button1 = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// widthValue
//
this.widthValue.Location = new System.Drawing.Point(136, 73);
this.widthValue.Name = "widthValue";
this.widthValue.Size = new System.Drawing.Size(115, 22);
this.widthValue.TabIndex = 0;
//
// contextMenuStrip1
//
this.contextMenuStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(61, 4);
//
// heightValue
//
this.heightValue.Location = new System.Drawing.Point(136, 101);
this.heightValue.Name = "heightValue";
this.heightValue.Size = new System.Drawing.Size(115, 22);
this.heightValue.TabIndex = 1;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(34, 76);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(44, 17);
this.label1.TabIndex = 2;
this.label1.Text = "Width";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(34, 104);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(49, 17);
this.label2.TabIndex = 2;
this.label2.Text = "Height";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(34, 131);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(52, 17);
this.label3.TabIndex = 2;
this.label3.Text = "Format";
//
// format
//
this.format.Items.AddRange(new object[] {
"YUV 4:4:4",
"YUV 4:2:2",
"YUV 4:2:0"});
this.format.Location = new System.Drawing.Point(136, 128);
this.format.Name = "format";
this.format.Size = new System.Drawing.Size(115, 24);
this.format.TabIndex = 2;
//
// button1
//
this.button1.Location = new System.Drawing.Point(115, 177);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(90, 38);
this.button1.TabIndex = 3;
this.button1.Text = "Apply";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// Settings
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.ButtonFace;
this.Controls.Add(this.button1);
this.Controls.Add(this.format);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.heightValue);
this.Controls.Add(this.widthValue);
this.Name = "Settings";
this.Size = new System.Drawing.Size(297, 271);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox widthValue;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private System.Windows.Forms.TextBox heightValue;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.ComboBox format;
private System.Windows.Forms.Button button1;
}
}