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
|
/* Deinterlace.designer.cs $
This file is part of the HandBrake source code.
Homepage: <http://handbrake.fr/>.
It may be used under the terms of the GNU General Public License. */
namespace Handbrake
{
partial class Deinterlace
{
/// <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 Component 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.label18 = new System.Windows.Forms.Label();
this.drop_deinterlace = new System.Windows.Forms.ComboBox();
this.text_custom = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// label18
//
this.label18.AutoSize = true;
this.label18.BackColor = System.Drawing.Color.Transparent;
this.label18.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label18.Location = new System.Drawing.Point(3, 7);
this.label18.Name = "label18";
this.label18.Size = new System.Drawing.Size(72, 13);
this.label18.TabIndex = 43;
this.label18.Text = "Deinterlace:";
//
// drop_deinterlace
//
this.drop_deinterlace.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.drop_deinterlace.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.drop_deinterlace.FormattingEnabled = true;
this.drop_deinterlace.Items.AddRange(new object[] {
"None",
"Fast",
"Slow",
"Slower",
"Custom"});
this.drop_deinterlace.Location = new System.Drawing.Point(111, 4);
this.drop_deinterlace.Name = "drop_deinterlace";
this.drop_deinterlace.Size = new System.Drawing.Size(161, 21);
this.drop_deinterlace.TabIndex = 42;
this.drop_deinterlace.SelectedIndexChanged += new System.EventHandler(this.drop_detelecine_SelectedIndexChanged);
//
// text_custom
//
this.text_custom.Location = new System.Drawing.Point(278, 4);
this.text_custom.Name = "text_custom";
this.text_custom.Size = new System.Drawing.Size(115, 20);
this.text_custom.TabIndex = 44;
this.text_custom.Visible = false;
//
// Deinterlace
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.AutoSize = true;
this.Controls.Add(this.text_custom);
this.Controls.Add(this.label18);
this.Controls.Add(this.drop_deinterlace);
this.Margin = new System.Windows.Forms.Padding(0);
this.MaximumSize = new System.Drawing.Size(400, 30);
this.Name = "Deinterlace";
this.Size = new System.Drawing.Size(400, 30);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
internal System.Windows.Forms.Label label18;
internal System.Windows.Forms.ComboBox drop_deinterlace;
private System.Windows.Forms.TextBox text_custom;
}
}
|