EduNetworkBuilder/EduNetworkBuilder/TranslationWindow.Designer.cs

170 lines
8.2 KiB
C#

namespace EduNetworkBuilder
{
partial class TranslationWindow
{
/// <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.cb1Language = new System.Windows.Forms.ComboBox();
this.tb1Message = new System.Windows.Forms.TextBox();
this.tb2Message = new System.Windows.Forms.TextBox();
this.cb2Language = new System.Windows.Forms.ComboBox();
this.btnClose = new System.Windows.Forms.Button();
this.btnSave = new System.Windows.Forms.Button();
this.lblStatus = new System.Windows.Forms.Label();
this.tb1Title = new System.Windows.Forms.TextBox();
this.tb2Title = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// cb1Language
//
this.cb1Language.FormattingEnabled = true;
this.cb1Language.Location = new System.Drawing.Point(12, 12);
this.cb1Language.Name = "cb1Language";
this.cb1Language.Size = new System.Drawing.Size(121, 24);
this.cb1Language.TabIndex = 0;
this.cb1Language.SelectedIndexChanged += new System.EventHandler(this.cb1Language_SelectedIndexChanged);
//
// tb1Message
//
this.tb1Message.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tb1Message.Location = new System.Drawing.Point(12, 42);
this.tb1Message.Multiline = true;
this.tb1Message.Name = "tb1Message";
this.tb1Message.Size = new System.Drawing.Size(400, 181);
this.tb1Message.TabIndex = 10;
this.tb1Message.Leave += new System.EventHandler(this.tb1Message_Leave);
//
// tb2Message
//
this.tb2Message.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tb2Message.Location = new System.Drawing.Point(12, 261);
this.tb2Message.Multiline = true;
this.tb2Message.Name = "tb2Message";
this.tb2Message.Size = new System.Drawing.Size(400, 181);
this.tb2Message.TabIndex = 12;
this.tb2Message.Leave += new System.EventHandler(this.tb2Message_Leave);
//
// cb2Language
//
this.cb2Language.FormattingEnabled = true;
this.cb2Language.Location = new System.Drawing.Point(12, 231);
this.cb2Language.Name = "cb2Language";
this.cb2Language.Size = new System.Drawing.Size(121, 24);
this.cb2Language.TabIndex = 11;
this.cb2Language.SelectedIndexChanged += new System.EventHandler(this.cb2Language_SelectedIndexChanged);
//
// btnClose
//
this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnClose.Location = new System.Drawing.Point(337, 456);
this.btnClose.Name = "btnClose";
this.btnClose.Size = new System.Drawing.Size(75, 23);
this.btnClose.TabIndex = 13;
this.btnClose.Text = "Close";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// btnSave
//
this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btnSave.Location = new System.Drawing.Point(12, 456);
this.btnSave.Name = "btnSave";
this.btnSave.Size = new System.Drawing.Size(75, 23);
this.btnSave.TabIndex = 14;
this.btnSave.Text = "Save";
this.btnSave.UseVisualStyleBackColor = true;
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
//
// lblStatus
//
this.lblStatus.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.lblStatus.AutoSize = true;
this.lblStatus.Location = new System.Drawing.Point(139, 459);
this.lblStatus.Name = "lblStatus";
this.lblStatus.Size = new System.Drawing.Size(48, 17);
this.lblStatus.TabIndex = 15;
this.lblStatus.Text = "Status";
//
// tb1Title
//
this.tb1Title.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tb1Title.Location = new System.Drawing.Point(185, 12);
this.tb1Title.Name = "tb1Title";
this.tb1Title.Size = new System.Drawing.Size(227, 22);
this.tb1Title.TabIndex = 16;
this.tb1Title.Leave += new System.EventHandler(this.tb1Title_Leave);
//
// tb2Title
//
this.tb2Title.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tb2Title.Location = new System.Drawing.Point(185, 231);
this.tb2Title.Name = "tb2Title";
this.tb2Title.Size = new System.Drawing.Size(227, 22);
this.tb2Title.TabIndex = 17;
this.tb2Title.Leave += new System.EventHandler(this.tb2Title_Leave);
//
// TranslationWindow
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(433, 491);
this.Controls.Add(this.tb2Title);
this.Controls.Add(this.tb1Title);
this.Controls.Add(this.lblStatus);
this.Controls.Add(this.btnSave);
this.Controls.Add(this.btnClose);
this.Controls.Add(this.tb2Message);
this.Controls.Add(this.cb2Language);
this.Controls.Add(this.tb1Message);
this.Controls.Add(this.cb1Language);
this.Name = "TranslationWindow";
this.Text = "TranslationWindow";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.TranslationWindow_FormClosing);
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TranslationWindow_KeyDown);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ComboBox cb1Language;
private System.Windows.Forms.TextBox tb1Message;
private System.Windows.Forms.TextBox tb2Message;
private System.Windows.Forms.ComboBox cb2Language;
private System.Windows.Forms.Button btnClose;
private System.Windows.Forms.Button btnSave;
private System.Windows.Forms.Label lblStatus;
private System.Windows.Forms.TextBox tb1Title;
private System.Windows.Forms.TextBox tb2Title;
}
}