about summary refs log tree commit diff
path: root/name_formatter/Name Formatter/Form1.cs
diff options
context:
space:
mode:
Diffstat (limited to 'name_formatter/Name Formatter/Form1.cs')
-rw-r--r--name_formatter/Name Formatter/Form1.cs75
1 files changed, 75 insertions, 0 deletions
diff --git a/name_formatter/Name Formatter/Form1.cs b/name_formatter/Name Formatter/Form1.cs
new file mode 100644
index 0000000..737b4b8
--- /dev/null
+++ b/name_formatter/Name Formatter/Form1.cs
@@ -0,0 +1,75 @@
+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 Name_Formatter

+{

+    public partial class nameFormatter : Form

+    {

+        public nameFormatter()

+        {

+            InitializeComponent();

+        }

+

+        private void firstButton_Click(object sender, EventArgs e)

+        {

+            outputLabel.Text = titleTextBox.Text + " " +

+                firstNameTextBox.Text + " " +

+                middleNameTextBox.Text + " " +

+                lastNameTextBox.Text;

+        }

+

+        private void secondButton_Click(object sender, EventArgs e)

+        {

+            outputLabel.Text = firstNameTextBox.Text + " " +

+                middleNameTextBox.Text + " " +

+                lastNameTextBox.Text;

+        }

+

+        private void thirdButton_Click(object sender, EventArgs e)

+        {

+            outputLabel.Text = firstNameTextBox.Text + " " +

+                lastNameTextBox.Text;

+        }

+

+        private void forthButton_Click(object sender, EventArgs e)

+        {

+            outputLabel.Text = lastNameTextBox.Text + ", " +

+                firstNameTextBox.Text + " " +

+                middleNameTextBox.Text + ", " +

+                titleTextBox.Text;

+        }

+

+        private void fifthButton_Click(object sender, EventArgs e)

+        {

+            outputLabel.Text = lastNameTextBox.Text + ", " +

+                firstNameTextBox.Text + " " +

+                middleNameTextBox.Text;

+        }

+

+        private void sixthButton_Click(object sender, EventArgs e)

+        {

+            outputLabel.Text = lastNameTextBox.Text + ", " +

+                firstNameTextBox.Text;

+        }

+

+        private void clearButton_Click(object sender, EventArgs e)

+        {

+            titleTextBox.Text = "";

+            firstNameTextBox.Text = "";

+            middleNameTextBox.Text = "";

+            lastNameTextBox.Text = "";

+            outputLabel.Text = "";

+        }

+        private void exitButton_Click(object sender, EventArgs e)

+        {

+            this.Close();

+        }

+    }

+}