1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
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;
}
}
|