ShareX/ScreenCaptureLib/Screencast/FFmpegOptionsForm.Designer.cs
2014-05-08 11:54:41 +08:00

127 lines
5.2 KiB
C#

namespace ScreenCaptureLib
{
partial class FFmpegOptionsForm
{
/// <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.btnCancel = new System.Windows.Forms.Button();
this.btnOK = new System.Windows.Forms.Button();
this.comboBoxCodecs = new System.Windows.Forms.ComboBox();
this.lblCodec = new System.Windows.Forms.Label();
this.nudBitrate = new System.Windows.Forms.NumericUpDown();
this.lblBitrate = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.nudBitrate)).BeginInit();
this.SuspendLayout();
//
// btnCancel
//
this.btnCancel.Location = new System.Drawing.Point(224, 40);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 10;
this.btnCancel.Text = "Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// btnOK
//
this.btnOK.Location = new System.Drawing.Point(224, 8);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(75, 23);
this.btnOK.TabIndex = 9;
this.btnOK.Text = "OK";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// comboBoxCodecs
//
this.comboBoxCodecs.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBoxCodecs.FormattingEnabled = true;
this.comboBoxCodecs.Location = new System.Drawing.Point(56, 8);
this.comboBoxCodecs.Name = "comboBoxCodecs";
this.comboBoxCodecs.Size = new System.Drawing.Size(152, 21);
this.comboBoxCodecs.TabIndex = 11;
//
// lblCodec
//
this.lblCodec.AutoSize = true;
this.lblCodec.Location = new System.Drawing.Point(8, 8);
this.lblCodec.Name = "lblCodec";
this.lblCodec.Size = new System.Drawing.Size(38, 13);
this.lblCodec.TabIndex = 12;
this.lblCodec.Text = "Codec";
//
// nudBitrate
//
this.nudBitrate.Location = new System.Drawing.Point(56, 40);
this.nudBitrate.Name = "nudBitrate";
this.nudBitrate.Size = new System.Drawing.Size(152, 20);
this.nudBitrate.TabIndex = 13;
//
// lblBitrate
//
this.lblBitrate.AutoSize = true;
this.lblBitrate.Location = new System.Drawing.Point(8, 40);
this.lblBitrate.Name = "lblBitrate";
this.lblBitrate.Size = new System.Drawing.Size(40, 13);
this.lblBitrate.TabIndex = 14;
this.lblBitrate.Text = "Bit rate";
//
// FFmpegOptionsForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(304, 90);
this.Controls.Add(this.lblBitrate);
this.Controls.Add(this.nudBitrate);
this.Controls.Add(this.lblCodec);
this.Controls.Add(this.comboBoxCodecs);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnOK);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.MinimumSize = new System.Drawing.Size(300, 128);
this.Name = "FFmpegOptionsForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "FFmpegOptionsForm";
((System.ComponentModel.ISupportInitialize)(this.nudBitrate)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.ComboBox comboBoxCodecs;
private System.Windows.Forms.Label lblCodec;
private System.Windows.Forms.NumericUpDown nudBitrate;
private System.Windows.Forms.Label lblBitrate;
}
}