17 Mart 2015 Salı

windows form aplication c# basit hesap makinesi


using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace WindowsFormsApplication6
{
    public partial class Form1 : Form
    {
        double sayi1, sayi2;
        double sonuc;
        string secim = "";

        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {

        }

        private void buton1_Click(object sender, EventArgs e)
        {
            if (secim == "=")
            {
                secim = "";
                textBox1.Text = "";


            }

            textBox1.Text = textBox1.Text + '1';



        }

        private void button2_Click(object sender, EventArgs e)
        {
            if (secim == "=")
            {
                secim = "";
                textBox1.Text = "";


            }

            textBox1.Text = textBox1.Text + '2';

        }

        private void button3_Click(object sender, EventArgs e)
        {
            if (secim == "=")
            {
                secim = "";
                textBox1.Text = "";


            }

            textBox1.Text = textBox1.Text + '3';

        }

        private void button4_Click(object sender, EventArgs e)
        {
            if (secim == "=")
            {
                secim = "";
                textBox1.Text = "";


            }

            textBox1.Text = textBox1.Text + '4';

        }

        private void button5_Click(object sender, EventArgs e)
        {
            if (secim == "=")
            {
                secim = "";
                textBox1.Text = "";


            }

            textBox1.Text = textBox1.Text + '5';

        }

        private void button6_Click(object sender, EventArgs e)
        {
            if (secim == "=")
            {
                secim = "";
                textBox1.Text = "";


            }

            textBox1.Text = textBox1.Text + '6';

        }

        private void button7_Click(object sender, EventArgs e)
        {
            if (secim == "=")
            {
                secim = "";
                textBox1.Text = "";


            }

            textBox1.Text = textBox1.Text + '7';

        }

        private void kerem_Click(object sender, EventArgs e)
        {
            if (secim == "=")
            {
                secim = "";
                textBox1.Text = "";


            }

            textBox1.Text = textBox1.Text + '8';

        }

        private void button9_Click(object sender, EventArgs e)
        {
            if (secim == "=")
            {
                secim = "";
                textBox1.Text = "";


            }

            textBox1.Text = textBox1.Text + '9';

        }

        private void button10_Click(object sender, EventArgs e)
        {
            if (secim == "=")
            {
                secim = "";
                textBox1.Text = "";


            }

            textBox1.Text = textBox1.Text + '0';

        }

        private void TOPLAMA_Click(object sender, EventArgs e)
        {
            sayi1 = Convert.ToInt16(textBox1.Text);
            secim = "+";
            textBox1.Text = "";

        }

        private void CIKARMA_Click(object sender, EventArgs e)
        {
            sayi1 = Convert.ToInt16(textBox1.Text);
            secim = "-";
            textBox1.Text = "";

        }

        private void CARPMA_Click(object sender, EventArgs e)
        {
            sayi1 = Convert.ToInt16(textBox1.Text);
            secim = "*";
            textBox1.Text = "";

        }

        private void bolme_Click(object sender, EventArgs e)
        {
            sayi1 = Convert.ToInt16(textBox1.Text);
            secim = "/";
            textBox1.Text = "";

        }

        private void esittir_Click(object sender, EventArgs e)
        {
            sayi2 = Convert.ToInt16(textBox1.Text);
            if (secim == "+")
            {
                sonuc = sayi1 + sayi2;
                textBox1.Text = Convert.ToString(sonuc);
                secim = "=";
                sayi1 = 0;
                sayi2 = 0;



            }
            else if (secim == "-")
            {
                sonuc = sayi1 - sayi2;
                textBox1.Text = Convert.ToString(sonuc);
                secim = "=";
                sayi1 = 0;
                sayi2 = 0;





            }
            else if (secim == "*")
            {
                sonuc = sayi1 * sayi2;
                textBox1.Text = Convert.ToString(sonuc);
                secim = "=";
                sayi1 = 0;
                sayi2 = 0;





            }
            else if (secim == "/")
            {
                sonuc = sayi1 / sayi2;
                textBox1.Text = Convert.ToString(sonuc);
                secim = "=";
                sayi1 = 0;
                sayi2 = 0;





            }


        }


    }
    
}


hazoırlayan:Kerem Kurnaz


Hiç yorum yok: