我想我在Visual Studio(XAML)应用程序的背景颜色更改为白色(或ApplicationPageBackgroundTheme /或任何它被称为),它不工作。 当我调试,它只是显示一个黑色的背景。
当我去到的设备窗格中,选择默认的颜色主题,以“光”,它使屏幕上的一切白,甚至文本和背景。
当我改变颜色的背景在XAML中,在运行时,它被改回黑色!
我已经搜查,但没有发现任何信息。 这是一个已知的错误? 这是从来没有过。 我使用的Visual Studio 2012旗舰版。
<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>