diff options
Diffstat (limited to 'latin_translator/Latin Translator/Form1.Designer.cs')
-rw-r--r-- | latin_translator/Latin Translator/Form1.Designer.cs | 113 |
1 files changed, 113 insertions, 0 deletions
diff --git a/latin_translator/Latin Translator/Form1.Designer.cs b/latin_translator/Latin Translator/Form1.Designer.cs new file mode 100644 index 0000000..4d4d542 --- /dev/null +++ b/latin_translator/Latin Translator/Form1.Designer.cs @@ -0,0 +1,113 @@ +namespace Latin_Translator +{ + partial class Form1 + { + /// <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.instructionLabel = new System.Windows.Forms.Label(); + this.translationLabel = new System.Windows.Forms.Label(); + this.sinisterButton = new System.Windows.Forms.Button(); + this.dexterButton = new System.Windows.Forms.Button(); + this.mediumButton = new System.Windows.Forms.Button(); + this.SuspendLayout(); + // + // instructionLabel + // + this.instructionLabel.AutoSize = true; + this.instructionLabel.Location = new System.Drawing.Point(51, 42); + this.instructionLabel.Name = "instructionLabel"; + this.instructionLabel.Size = new System.Drawing.Size(304, 16); + this.instructionLabel.TabIndex = 0; + this.instructionLabel.Text = "Click on a Latin word to see the English equivalent."; + // + // translationLabel + // + this.translationLabel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.translationLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.translationLabel.Location = new System.Drawing.Point(54, 81); + this.translationLabel.Name = "translationLabel"; + this.translationLabel.Size = new System.Drawing.Size(316, 34); + this.translationLabel.TabIndex = 1; + this.translationLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // sinisterButton + // + this.sinisterButton.Location = new System.Drawing.Point(54, 140); + this.sinisterButton.Name = "sinisterButton"; + this.sinisterButton.Size = new System.Drawing.Size(75, 30); + this.sinisterButton.TabIndex = 2; + this.sinisterButton.Text = "Sinister"; + this.sinisterButton.UseVisualStyleBackColor = true; + this.sinisterButton.Click += new System.EventHandler(this.sinisterButton_Click); + // + // dexterButton + // + this.dexterButton.Location = new System.Drawing.Point(295, 140); + this.dexterButton.Name = "dexterButton"; + this.dexterButton.Size = new System.Drawing.Size(75, 30); + this.dexterButton.TabIndex = 3; + this.dexterButton.Text = "Dexter"; + this.dexterButton.UseVisualStyleBackColor = true; + this.dexterButton.Click += new System.EventHandler(this.dexterButton_Click); + // + // mediumButton + // + this.mediumButton.Location = new System.Drawing.Point(174, 140); + this.mediumButton.Name = "mediumButton"; + this.mediumButton.Size = new System.Drawing.Size(75, 30); + this.mediumButton.TabIndex = 4; + this.mediumButton.Text = "Medium"; + this.mediumButton.UseVisualStyleBackColor = true; + this.mediumButton.Click += new System.EventHandler(this.mediumButton_Click); + // + // Form1 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(432, 203); + this.Controls.Add(this.mediumButton); + this.Controls.Add(this.dexterButton); + this.Controls.Add(this.sinisterButton); + this.Controls.Add(this.translationLabel); + this.Controls.Add(this.instructionLabel); + this.Name = "Form1"; + this.Text = "Form1"; + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.Label instructionLabel; + private System.Windows.Forms.Label translationLabel; + private System.Windows.Forms.Button sinisterButton; + private System.Windows.Forms.Button dexterButton; + private System.Windows.Forms.Button mediumButton; + } +} + |