From edee95fca0596b49ad7ba47c6b1494886f18deee Mon Sep 17 00:00:00 2001 From: ​ Date: Thu, 1 Jan 1970 00:00:00 +0000 Subject: latin translator --- latin_translator/Latin Translator/Form1.cs | 35 ++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 latin_translator/Latin Translator/Form1.cs (limited to 'latin_translator/Latin Translator/Form1.cs') diff --git a/latin_translator/Latin Translator/Form1.cs b/latin_translator/Latin Translator/Form1.cs new file mode 100644 index 0000000..ef9392d --- /dev/null +++ b/latin_translator/Latin Translator/Form1.cs @@ -0,0 +1,35 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Latin_Translator +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + + private void sinisterButton_Click(object sender, EventArgs e) + { + translationLabel.Text = "Left"; + } + + private void mediumButton_Click(object sender, EventArgs e) + { + translationLabel.Text = "Center"; + } + + private void dexterButton_Click(object sender, EventArgs e) + { + translationLabel.Text = "Right"; + } + } +} -- cgit 1.4.1