in C# Windows Phone 8.1, I create an AppBarButton with this XAML code:
<AppBarButton x:Name="btnMore" Icon="More" Foreground="White" IsEnabled="False" Label="More" Grid.Row="1" VerticalAlignment="Top" FontSize="18" Click="AppBarButton_Click" />
in the dark theme of the phone everything is fine:
but in the LIGHT theme, backcolor and font color are black:
I tried to set a Background and BorderBrush for this problem but nothing changes, still in Light Theme passage and circle is black (even when the button is enabled)
<AppBarButton x:Name="btnMore" Icon="More" Foreground="White" IsEnabled="False" Label="More" Grid.Row="1" VerticalAlignment="Top" FontSize="18" Click="AppBarButton_Click" Background="White" BorderBrush="White" />
how do I solve this?