diff options
author | | 1970-01-01 00:00:00 +0000 |
---|---|---|
committer | | 1970-01-01 00:00:00 +0000 |
commit | 45a9ce064a8a4665f2846920dfc4b4402b597728 (patch) | |
tree | ea6c5ada196b081c745335798d3e91841e902ba1 /name_formatter/Name Formatter/Form1.cs | |
parent | distance calc (diff) | |
download | wf-45a9ce064a8a4665f2846920dfc4b4402b597728.tar wf-45a9ce064a8a4665f2846920dfc4b4402b597728.tar.gz wf-45a9ce064a8a4665f2846920dfc4b4402b597728.tar.bz2 wf-45a9ce064a8a4665f2846920dfc4b4402b597728.tar.xz wf-45a9ce064a8a4665f2846920dfc4b4402b597728.zip |
name formatter
Diffstat (limited to 'name_formatter/Name Formatter/Form1.cs')
-rw-r--r-- | name_formatter/Name Formatter/Form1.cs | 75 |
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(); + } + } +} |