You are on page 1of 4

using

using
using
using
using
using
using
using
using

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

namespace NekakavKalkulator
{
public partial class Form1 : Form
{
bool plus = false;
bool minus = false;
bool multiply = false;
bool divide = false;
bool equal = false;
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
CheckifEqual();
textBox1.Text = textBox1.Text + "1";
}
private void CheckifEqual()
{
if (equal)
{
textBox1.Text = "";
equal = false;
}
}
private void button2_Click(object sender, EventArgs e)
{
CheckifEqual();
textBox1.Text = textBox1.Text + "2";
}
private void button3_Click(object sender, EventArgs e)
{
CheckifEqual();
textBox1.Text = textBox1.Text + "3";
}
private void button4_Click(object sender, EventArgs e)
{

CheckifEqual();
textBox1.Text = textBox1.Text + "4";
}
private void button5_Click(object sender, EventArgs e)
{
CheckifEqual();
textBox1.Text = textBox1.Text + "5";
}
private void button6_Click(object sender, EventArgs e)
{
CheckifEqual();
textBox1.Text = textBox1.Text + "6";
}
private void button7_Click(object sender, EventArgs e)
{
CheckifEqual();
textBox1.Text = textBox1.Text + "7";
}
private void button8_Click(object sender, EventArgs e)
{
CheckifEqual();
textBox1.Text = textBox1.Text + "8";
}
private void button9_Click(object sender, EventArgs e)
{
CheckifEqual();
textBox1.Text = textBox1.Text + "9";
}
private void button10_Click(object sender, EventArgs e)
{
CheckifEqual();
textBox1.Text = textBox1.Text + "0";
}
private void button16_Click(object sender, EventArgs e)
{
CheckifEqual();
if (textBox1.Text.Contains("."))
{
return;
}
else{
textBox1.Text = textBox1.Text + ".";
}
}
private void button14_Click(object sender, EventArgs e)
{
if (textBox1.Text.Contains("-"))

{
textBox1.Text = textBox1.Text.Remove(0, 1);
}
else
{
textBox1.Text = "-" + textBox1.Text;
}
}
private void button13_Click(object sender, EventArgs e)
{
if (textBox1.Text == "")
{
return;
}
else
{
plus = true;
textBox1.Tag = textBox1.Text;
textBox1.Text = "";
}
}
private void button17_Click(object sender, EventArgs
{
equal = true;
if (plus) {
decimal dec = Convert.ToDecimal(textBox1.Tag)
textBox1.Text = dec.ToString();
}
if (multiply)
{
decimal dec = Convert.ToDecimal(textBox1.Tag)
textBox1.Text = dec.ToString();
}
if (minus)
{
decimal dec = Convert.ToDecimal(textBox1.Tag)
textBox1.Text = dec.ToString();
}
if (divide) {
decimal dec = Convert.ToDecimal(textBox1.Tag)
textBox1.Text = dec.ToString();

private void minus_Click(object sender, EventArgs e)


{
if (textBox1.Text == "")
{
return;
}
else
{
minus = true;
textBox1.Tag = textBox1.Text;

e)

+ Convert.ToDecimal(textBox1.Text);

* Convert.ToDecimal(textBox1.Text);

- Convert.ToDecimal(textBox1.Text);

/ Convert.ToDecimal(textBox1.Text);

textBox1.Text = "";
}

private void button11_Click(object sender, EventArgs e)


{
if (textBox1.Text == "")
{
return;
}
else
{
multiply = true;
textBox1.Tag = textBox1.Text;
textBox1.Text = "";
}
}
private void button15_Click(object sender, EventArgs e)
{
if (textBox1.Text == "")
{
return;
}
else
{
divide = true;
textBox1.Tag = textBox1.Text;
textBox1.Text = "";
}
}
private void button12_Click(object sender, EventArgs e)
{
plus = minus = multiply = divide = equal= false;
textBox1.Text = "";
textBox1.Tag = "";
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
textBox1.TextAlign = HorizontalAlignment.Right;
}
}

You might also like