diff options
Diffstat (limited to 'latin_translator/Latin Translator/Form1.cs')
-rw-r--r-- | latin_translator/Latin Translator/Form1.cs | 35 |
1 files changed, 35 insertions, 0 deletions
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"; + } + } +} |