I have a simple TextBox called MsgBox1 and I have changed the trigger from LostFocus to ProperyChanged.
When I modify the text (i.e. MsgBox1.Text = "Some Text") execution branches to the event handler.
So far, so good.
Now, what do I put in the empty event handler to tell it to actually update MsgBox1.Text?
Hours of searching yields less than helpful results like:
{
// Do Something
}
Edit: Thanks, It was stupidity on my part. The methods don't run in parallel while tracing. If I run rather than trace everything works as it should. Thanks again.
eventis triggered when the text changes, therefore the text in theTextBoxhas already changed.