Incidentally, you could make all of your buttons use the same event handler and do:
Code:
Button btn = sender as Button;

txtValue.Text += btn.Text;
And similar for the operand (although I think the correct term is 'operator') buttons...
May save you a bit of typ-o-ing...