Ejemplo n.º 1
0
 public void DelButton()
 {
     if (String.IsNullOrEmpty(Operator))
     {
         FirstOperand.Del();
         NotifyOfPropertyChange(() => Result);
     }
     else
     {
         SecondOperand.Del();
         NotifyOfPropertyChange(() => Result);
     }
 }