Advertisement
touhid_xml

Simple Calculator C#

Apr 5th, 2013
457
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.70 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9.  
  10. namespace hello
  11. {
  12.     public partial class Form1 : Form
  13.     {
  14.         public Form1()
  15.         {
  16.             InitializeComponent();
  17.                    
  18.         }
  19.        
  20.         private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
  21.         {
  22.  
  23.         }
  24.  
  25.         private void Form1_Load_1(object sender, EventArgs e)
  26.         {
  27.  
  28.  
  29.             comboBox1.Items.Add("+");
  30.             comboBox1.Items.Add("-");
  31.             comboBox1.Items.Add("*");
  32.             comboBox1.Items.Add("/");
  33.             Update();
  34.         }
  35.  
  36.         private void button1_Click(object sender, EventArgs e)
  37.         {
  38.             int val1 = int.Parse(textBox1.Text);
  39.             int val2 = int.Parse(textBox2.Text);
  40.  
  41.  
  42.  
  43.             if (comboBox1.SelectedItem == "+")
  44.             {
  45.                 textBox3.Text = (val1 + val2).ToString();
  46.             }
  47.  
  48.             else if (comboBox1.SelectedItem == "-")
  49.             {
  50.                 textBox3.Text = (val1 - val2).ToString();
  51.             }
  52.  
  53.             else if (comboBox1.SelectedItem == "*")
  54.             {
  55.                 textBox3.Text = (val1 * val2).ToString();
  56.             }
  57.  
  58.             else if (comboBox1.SelectedItem == "/")
  59.             {
  60.                 textBox3.Text = (val1 / val2).ToString();
  61.             }
  62.            
  63.         }
  64.  
  65.         private void label5_Click(object sender, EventArgs e)
  66.         {
  67.             MessageBox.Show("Copyright (c) 2013 Touhid\n \nWebsite: www.touhid.info", "Copyright");
  68.         }
  69.              
  70.     }
  71. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement