-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathfrmMain.Designer.cs
151 lines (145 loc) · 8.03 KB
/
frmMain.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
namespace TantaVideoFileCopyViaPipelineMP4Sink
{
partial class frmMain
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain));
this.buttonStartStopCopy = new System.Windows.Forms.Button();
this.textBoxOutputFileNameAndPath = new System.Windows.Forms.TextBox();
this.labelSourceFileName = new System.Windows.Forms.Label();
this.labelOutputFileName = new System.Windows.Forms.Label();
this.textBoxSourceFileNameAndPath = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.buttonPickFile = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// buttonStartStopCopy
//
this.buttonStartStopCopy.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.buttonStartStopCopy.Location = new System.Drawing.Point(209, 167);
this.buttonStartStopCopy.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.buttonStartStopCopy.Name = "buttonStartStopCopy";
this.buttonStartStopCopy.Size = new System.Drawing.Size(171, 36);
this.buttonStartStopCopy.TabIndex = 21;
this.buttonStartStopCopy.Text = "Start Copy";
this.buttonStartStopCopy.UseVisualStyleBackColor = true;
this.buttonStartStopCopy.Click += new System.EventHandler(this.buttonStartStopCopy_Click);
//
// textBoxOutputFileNameAndPath
//
this.textBoxOutputFileNameAndPath.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.textBoxOutputFileNameAndPath.Location = new System.Drawing.Point(31, 135);
this.textBoxOutputFileNameAndPath.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.textBoxOutputFileNameAndPath.Name = "textBoxOutputFileNameAndPath";
this.textBoxOutputFileNameAndPath.ReadOnly = true;
this.textBoxOutputFileNameAndPath.Size = new System.Drawing.Size(529, 22);
this.textBoxOutputFileNameAndPath.TabIndex = 20;
//
// labelSourceFileName
//
this.labelSourceFileName.AutoSize = true;
this.labelSourceFileName.Location = new System.Drawing.Point(15, 65);
this.labelSourceFileName.Name = "labelSourceFileName";
this.labelSourceFileName.Size = new System.Drawing.Size(233, 17);
this.labelSourceFileName.TabIndex = 19;
this.labelSourceFileName.Text = "Source File Name and Path to Copy";
//
// labelOutputFileName
//
this.labelOutputFileName.AutoSize = true;
this.labelOutputFileName.Location = new System.Drawing.Point(15, 117);
this.labelOutputFileName.Name = "labelOutputFileName";
this.labelOutputFileName.Size = new System.Drawing.Size(179, 17);
this.labelOutputFileName.TabIndex = 22;
this.labelOutputFileName.Text = "Output File Name and Path";
//
// textBoxSourceFileNameAndPath
//
this.textBoxSourceFileNameAndPath.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.textBoxSourceFileNameAndPath.Location = new System.Drawing.Point(31, 84);
this.textBoxSourceFileNameAndPath.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.textBoxSourceFileNameAndPath.Name = "textBoxSourceFileNameAndPath";
this.textBoxSourceFileNameAndPath.Size = new System.Drawing.Size(478, 22);
this.textBoxSourceFileNameAndPath.TabIndex = 23;
this.textBoxSourceFileNameAndPath.TextChanged += new System.EventHandler(this.textBoxSourceFileNameAndPath_TextChanged);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(83, 16);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(426, 34);
this.label1.TabIndex = 24;
this.label1.Text = "This application copies the video and audio streams in a video file \r\nto a file o" +
"f the same type using a Media Session and Pipeline.";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// buttonPickFile
//
this.buttonPickFile.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.buttonPickFile.Location = new System.Drawing.Point(513, 82);
this.buttonPickFile.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.buttonPickFile.Name = "buttonPickFile";
this.buttonPickFile.Size = new System.Drawing.Size(47, 27);
this.buttonPickFile.TabIndex = 32;
this.buttonPickFile.Text = "...";
this.buttonPickFile.UseVisualStyleBackColor = true;
this.buttonPickFile.Click += new System.EventHandler(this.buttonPickFile_Click);
//
// frmMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(576, 215);
this.Controls.Add(this.buttonPickFile);
this.Controls.Add(this.label1);
this.Controls.Add(this.textBoxSourceFileNameAndPath);
this.Controls.Add(this.labelOutputFileName);
this.Controls.Add(this.buttonStartStopCopy);
this.Controls.Add(this.textBoxOutputFileNameAndPath);
this.Controls.Add(this.labelSourceFileName);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Location = new System.Drawing.Point(0, 0);
this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
this.MinimumSize = new System.Drawing.Size(591, 253);
this.Name = "frmMain";
this.Text = "Tanta: Copy Video File Via Pipeline";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmMain_FormClosing);
this.Load += new System.EventHandler(this.frmMain_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button buttonStartStopCopy;
private System.Windows.Forms.TextBox textBoxOutputFileNameAndPath;
private System.Windows.Forms.Label labelSourceFileName;
private System.Windows.Forms.Label labelOutputFileName;
private System.Windows.Forms.TextBox textBoxSourceFileNameAndPath;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button buttonPickFile;
}
}