如何更改 Windows 8 XAML 应用程序中的默认页眉?问题很简单,只是我还在学习XAML。
<Page.DataContext>
<local:MainPageViewModel/>
</Page.DataContext>
<!-- PageAdornerControl displays the back button and a page title -->
<Layout:PageAdornerControl
Background="{StaticResource ApplicationPageBackgroundThemeBrush}"
Header="{Binding Header}">
我将标题视为文本。我的第一个想法是将 {Binding Header} 更改为 {Binding },但是将鼠标悬停在 Header 上会显示这是一些有效的东西。另外,我想使用 Visual Studio 2012 属性窗口来更改文本。