diff --git a/THP-Conveter-CS/GUI/MP4.Designer.cs b/THP-Conveter-CS/GUI/MP4.Designer.cs index 094641a..cc9652e 100644 --- a/THP-Conveter-CS/GUI/MP4.Designer.cs +++ b/THP-Conveter-CS/GUI/MP4.Designer.cs @@ -36,6 +36,7 @@ private void InitializeComponent() this.VideoSizeComboBox = new System.Windows.Forms.ComboBox(); this.label3 = new System.Windows.Forms.Label(); this.UseAudioCheckBox = new System.Windows.Forms.CheckBox(); + this.label2 = new System.Windows.Forms.Label(); this.SuspendLayout(); // // button1 @@ -98,7 +99,7 @@ private void InitializeComponent() "256x192", "608x464", "512x192"}); - this.VideoSizeComboBox.Location = new System.Drawing.Point(704, 117); + this.VideoSizeComboBox.Location = new System.Drawing.Point(704, 79); this.VideoSizeComboBox.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); this.VideoSizeComboBox.MaxDropDownItems = 13; this.VideoSizeComboBox.Name = "VideoSizeComboBox"; @@ -108,7 +109,7 @@ private void InitializeComponent() // label3 // this.label3.AutoSize = true; - this.label3.Location = new System.Drawing.Point(743, 87); + this.label3.Location = new System.Drawing.Point(743, 49); this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(94, 25); @@ -128,12 +129,23 @@ private void InitializeComponent() this.UseAudioCheckBox.Text = "Use Audio?"; this.UseAudioCheckBox.UseVisualStyleBackColor = true; // + // label2 + // + this.label2.AutoSize = true; + this.label2.Location = new System.Drawing.Point(541, 117); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(501, 25); + this.label2.TabIndex = 9; + this.label2.Text = "Note: If using Original, Height/Width must be multiples of 16."; + this.label2.TextAlign = System.Drawing.ContentAlignment.TopCenter; + // // MP4 // this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 25F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.SystemColors.Control; this.ClientSize = new System.Drawing.Size(1143, 750); + this.Controls.Add(this.label2); this.Controls.Add(this.UseAudioCheckBox); this.Controls.Add(this.label3); this.Controls.Add(this.VideoSizeComboBox); @@ -160,5 +172,6 @@ private void InitializeComponent() private System.Windows.Forms.ComboBox VideoSizeComboBox; private System.Windows.Forms.Label label3; private System.Windows.Forms.CheckBox UseAudioCheckBox; + private System.Windows.Forms.Label label2; } } \ No newline at end of file diff --git a/THP-Conveter-CS/GUI/MP4.cs b/THP-Conveter-CS/GUI/MP4.cs index 5f6e89c..db2a528 100644 --- a/THP-Conveter-CS/GUI/MP4.cs +++ b/THP-Conveter-CS/GUI/MP4.cs @@ -20,6 +20,7 @@ public MP4() { InitializeComponent(); label1.Hide(); + label2.Hide(); button2.Hide(); textBox1.Hide(); label3.Hide(); @@ -43,6 +44,7 @@ private void button1_Click(object sender, EventArgs e) Properties.Settings.Default.mp4_video = open.FileName; Properties.Settings.Default.Save(); label1.Show(); + label2.Show(); button2.Show(); textBox1.Show(); label3.Show();