If I have Window in WPF as follows:
Add a hidden textblock in to the window:
<TextBlock
Text="{Binding Path=Title,RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=Window}}"
Visibility="Hidden"
Height="0"
Margin="100 0 0 0">
</TextBlock>
The Margin allows for the windows controls to be pushed out of the way.
The Height makes the control take up no vertical space.
The Visiblity is probable not required because of the zero height, but by setting it to hidden will cause it to take up space on the canvas but show nothing.