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