using System.Collections.Generic;
using System.ComponentModel;
using System.Windows.Forms;
public partial class Form1 : Form
private void n1_Click(object sender, EventArgs e)
if (textBox1.Text == "0" && textBox1.Text != null)
textBox1.Text = textBox1.Text + "1";
private void n2_Click(object sender, EventArgs e)
if (textBox1.Text == "0" && textBox1.Text != null)
textBox1.Text = textBox1.Text + "2";
private void n3_Click(object sender, EventArgs e)
if (textBox1.Text == "0" && textBox1.Text != null)
textBox1.Text = textBox1.Text + "3";
private void n4_Click(object sender, EventArgs e)
if (textBox1.Text == "0" && textBox1.Text != null)
textBox1.Text = textBox1.Text + "4";
private void n5_Click(object sender, EventArgs e)
if (textBox1.Text == "0" && textBox1.Text != null)
textBox1.Text = textBox1.Text + "5";
private void n6_Click(object sender, EventArgs e)
if (textBox1.Text == "0" && textBox1.Text != null)
textBox1.Text = textBox1.Text + "6";
private void n7_Click(object sender, EventArgs e)
if (textBox1.Text == "0" && textBox1.Text != null)
textBox1.Text = textBox1.Text + "7";
private void n8_Click(object sender, EventArgs e)
if (textBox1.Text == "0" && textBox1.Text != null)
textBox1.Text = textBox1.Text + "8";
private void n9_Click(object sender, EventArgs e)
if (textBox1.Text == "" && textBox1.Text != null)
textBox1.Text = textBox1.Text + "9";
private void n0_Click(object sender, EventArgs e)
textBox1.Text = textBox1.Text + "0";
private void bad_Click(object sender, EventArgs e)
FirstNumber = Convert.ToDouble(textBox1.Text);
private void bsub_Click(object sender, EventArgs e)
FirstNumber = Convert.ToDouble(textBox1.Text);
private void bmul_Click(object sender, EventArgs e)
FirstNumber = Convert.ToDouble(textBox1.Text);
private void bdiv_Click(object sender, EventArgs e)
FirstNumber = Convert.ToDouble(textBox1.Text);
private void bc_Click(object sender, EventArgs e)
private void ndot_Click(object sender, EventArgs e)
textBox1.Text = textBox1.Text + ".";
private void nequal_Click(object sender, EventArgs e)
SecondNumber = Convert.ToDouble(textBox1.Text);
Result = (FirstNumber + SecondNumber);
textBox1.Text = Convert.ToString(Result);
Result = (FirstNumber - SecondNumber);
textBox1.Text = Convert.ToString(Result);
Result = (FirstNumber * SecondNumber);
textBox1.Text = Convert.ToString(Result);
textBox1.Text = "Cannot divide by zero";
Result = (FirstNumber / SecondNumber);
textBox1.Text = Convert.ToString(Result);