views:

125

answers:

1

Hello, I have a TextBlock on my main window. I would like to bind it's text to the window's title .. eg: myWindow.Title.

This has been bugging me all night, and I have Googled to death, any help is appreciated.

Thanks.

+5  A: 

The simplest way is just to bind back to the parent window:

<TextBlock Text="{Binding Title,RelativeSource={RelativeSource FindAncestor,AncestorType=Window}}"  />
Matt Hamilton
Excellent! Thanks much.
tcables