Example #1
0
 public Form1()
 {
     InitializeComponent();
     calc = new CalcBase();
 }
Example #2
0
 private void clear_Click(object sender, EventArgs e)
 {
     textBox1.Text = "0";
     calc          = new CalcBase();
 }
Example #3
0
 private void clear_clicked(object sender, EventArgs e)
 {
     calc          = new CalcBase();
     textBox1.Text = "0";
 }