I would like to use databinding when displaying data in a TextBox. I\'m basically doing like:
public void ShowRandomObject(IRandomObject randomObject) {
How about just
txtName.Text = txtName.Text;
You would have to set the value after clearing it anyways. This works in SL4 at least.