136 lines
5.8 KiB
C#
136 lines
5.8 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.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.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.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.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.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.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";
|
|
//
|
|
// 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.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;
|
|
}
|
|
} |