<Grid>
<Button Content="{Binding Title, RelativeSource={RelativeSource AncestorType={x:Type Window}}}" HorizontalAlignment="Left" Height="50" Width="100"/>
<Frame>
<Frame.Content>
<Page>
<Button Content="{Binding Title, RelativeSource={RelativeSource AncestorType={x:Type Window}}}" Height="50" Width="100"/>
</Page>
</Frame.Content>
</Frame>
</Grid>
我正在尝试绑定窗口标题属性内页按钮它不工作但在窗口内它正常工作。
这是我的Xaml代码: