SubtitleEdit/src/Forms/PacEncoding.Designer.cs
2012-06-03 16:00:18 +00:00

143 lines
6.4 KiB
C#

namespace Nikse.SubtitleEdit.Forms
{
partial class PacEncoding
{
/// <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.comboBoxCodePage = new System.Windows.Forms.ComboBox();
this.labelCodePage = new System.Windows.Forms.Label();
this.labelPreview = new System.Windows.Forms.Label();
this.textBoxPreview = new System.Windows.Forms.TextBox();
this.buttonCancel = new System.Windows.Forms.Button();
this.buttonOK = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// comboBoxCodePage
//
this.comboBoxCodePage.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBoxCodePage.FormattingEnabled = true;
this.comboBoxCodePage.Items.AddRange(new object[] {
"Latin",
"Greek",
"Latin Czech",
"Arabic",
"Hebrew",
"Thai",
"Cyrillic"});
this.comboBoxCodePage.Location = new System.Drawing.Point(12, 37);
this.comboBoxCodePage.Name = "comboBoxCodePage";
this.comboBoxCodePage.Size = new System.Drawing.Size(203, 21);
this.comboBoxCodePage.TabIndex = 0;
this.comboBoxCodePage.SelectedIndexChanged += new System.EventHandler(this.comboBoxCodePage_SelectedIndexChanged);
//
// labelCodePage
//
this.labelCodePage.AutoSize = true;
this.labelCodePage.Location = new System.Drawing.Point(9, 21);
this.labelCodePage.Name = "labelCodePage";
this.labelCodePage.Size = new System.Drawing.Size(155, 13);
this.labelCodePage.TabIndex = 1;
this.labelCodePage.Text = "Please choose PAC code page";
//
// labelPreview
//
this.labelPreview.AutoSize = true;
this.labelPreview.Location = new System.Drawing.Point(9, 73);
this.labelPreview.Name = "labelPreview";
this.labelPreview.Size = new System.Drawing.Size(122, 13);
this.labelPreview.TabIndex = 2;
this.labelPreview.Text = "PAC code page preview";
//
// textBoxPreview
//
this.textBoxPreview.Location = new System.Drawing.Point(12, 89);
this.textBoxPreview.Multiline = true;
this.textBoxPreview.Name = "textBoxPreview";
this.textBoxPreview.ReadOnly = true;
this.textBoxPreview.Size = new System.Drawing.Size(344, 44);
this.textBoxPreview.TabIndex = 3;
//
// buttonCancel
//
this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.buttonCancel.ImeMode = System.Windows.Forms.ImeMode.NoControl;
this.buttonCancel.Location = new System.Drawing.Point(281, 148);
this.buttonCancel.Name = "buttonCancel";
this.buttonCancel.Size = new System.Drawing.Size(75, 21);
this.buttonCancel.TabIndex = 5;
this.buttonCancel.Text = "C&ancel";
this.buttonCancel.UseVisualStyleBackColor = true;
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
//
// buttonOK
//
this.buttonOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.buttonOK.ImeMode = System.Windows.Forms.ImeMode.NoControl;
this.buttonOK.Location = new System.Drawing.Point(200, 148);
this.buttonOK.Name = "buttonOK";
this.buttonOK.Size = new System.Drawing.Size(75, 21);
this.buttonOK.TabIndex = 4;
this.buttonOK.Text = "&OK";
this.buttonOK.UseVisualStyleBackColor = true;
this.buttonOK.Click += new System.EventHandler(this.buttonOK_Click);
//
// PacEncoding
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(371, 177);
this.Controls.Add(this.buttonCancel);
this.Controls.Add(this.buttonOK);
this.Controls.Add(this.textBoxPreview);
this.Controls.Add(this.labelPreview);
this.Controls.Add(this.labelCodePage);
this.Controls.Add(this.comboBoxCodePage);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.KeyPreview = true;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "PacEncoding";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "PacEncoding";
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.PacEncoding_KeyDown);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ComboBox comboBoxCodePage;
private System.Windows.Forms.Label labelCodePage;
private System.Windows.Forms.Label labelPreview;
private System.Windows.Forms.TextBox textBoxPreview;
private System.Windows.Forms.Button buttonCancel;
private System.Windows.Forms.Button buttonOK;
}
}