I use PhoneTextBox (Microsoft.Phone.Controls.Toolkit) to receive input from user. If user has set text to textbox before, I want to keep this text for user.
But when I navigate to this view, the textbox show both "user text" and "hint text".
How I can prevent PhoneTextBox display hint text when I set text to it?
See the picture below. The text user enter before in field First Name has been covered by the "hint text"

I found a temporary solution in this case. I customize the
PhoneTextBoxclass. On TextChanged event, I check the content of text box, then change theHint Textto valid value. Use theSbPhoneTextBoxinsteadPhoneTextBoxin xaml. Problem solved :D