rakete
rakete

Reputation: 3041

Set text of a control of a child-window in WPF

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

Answers (1)

Dave
Dave

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

Related Questions