Reputation: 3041
How can i set a text of a textblock of a child window. childWindowname.textblockName.Text = "" doesn't have any effect.
Upvotes: 0
Views: 327
Reputation: 15016
Odd. I have used Text from codebehind to change the text in my window without any problems. The only difference is that I had a public method in my child window that I called, and that set textblockname.Text.
e.g.
public void SetTextBlockMessage(string message)
{
textblockname.Text = message;
}
Upvotes: 1