<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 代码: