当我在 Windows 8 商店应用程序上创建一个新页面时,它具有我想要更改的默认颜色。如果我删除页面上的所有元素并更改背景颜色,它就没有效果。在下面的示例中,我将背景设置为粉红色。我怎样才能使这种颜色生效?(我还从 App.xaml 中删除了所有内容)
<common:LayoutAwarePage
x:Name="pageRoot"
x:Class="DemoWindows8StoreApp.BasicPage3"
DataContext="{Binding DefaultViewModel, RelativeSource={RelativeSource Self}}"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:DemoWindows8StoreApp"
xmlns:common="using:DemoWindows8StoreApp.Common"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Background="Pink"
mc:Ignorable="d">