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.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…