我正在尝试将我在 Visual Studio (XAML) 中的应用程序的背景颜色更改为白色(或 ApplicationPageBackgroundTheme / 或其他任何名称),但它不起作用。当我调试时,它只显示黑色背景。
当我转到“设备”窗格并将默认颜色主题选择为“浅色”时,它会使屏幕上的所有内容变为白色,甚至是文本和背景。
当我在 xaml 中更改颜色的背景时,在运行时它会变回黑色!
我已经搜索过,但没有找到任何信息。这是一个已知的错误?这是以前从未发生过的。我正在使用 Visual Studio 2012 Ultimate。
<Page
x:Class="hjgjhgjg.MainPage"
IsTabStop="false"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:hjgjhgjh"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" Background="White">
<Grid Style="{StaticResource LayoutRootStyle}" Background="White">
<Grid.RowDefinitions>
<RowDefinition Height="140" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Button x:Name="backButton" Click="GoBack" IsEnabled="False" Style="{StaticResource BackButtonStyle}" />
<TextBlock x:Name="pageTitle" Grid.Column="1" Text="gfdgfdg" Style="{StaticResource PageHeaderTextStyle}" />
</Grid>
</Grid>
</Page>