diff options
Diffstat (limited to 'cpp/test/uwp/App.xaml')
-rw-r--r-- | cpp/test/uwp/App.xaml | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/cpp/test/uwp/App.xaml b/cpp/test/uwp/App.xaml new file mode 100644 index 00000000000..7614194b12a --- /dev/null +++ b/cpp/test/uwp/App.xaml @@ -0,0 +1,40 @@ +<Application + x:Class="TestSuite.App" + xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" + xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" + xmlns:local="using:TestSuite"> + + <Application.Resources> + <ResourceDictionary> + <ResourceDictionary.MergedDictionaries> + <ResourceDictionary Source="StandardStyles.xaml"/> + </ResourceDictionary.MergedDictionaries> + <Style x:Key="TitleStyle" TargetType="TextBlock"> + <Setter Property="Foreground" Value="{StaticResource ApplicationForegroundThemeBrush}"/> + <Setter Property="FontFamily" Value="Segoe UI Light" /> + <Setter Property="FontSize" Value="16" /> + </Style> + <Style x:Key="OutputStyle" TargetType="TextBlock"> + <Setter Property="Foreground" Value="Black" /> + <Setter Property="FontFamily" Value="Segoe UI Light" /> + <Setter Property="FontSize" Value="16" /> + </Style> + <Style x:Key="H1Style" TargetType="TextBlock"> + <Setter Property="Foreground" Value="White" /> + <Setter Property="FontFamily" Value="Segoe UI Light" /> + <Setter Property="FontSize" Value="36" /> + <Setter Property="Margin" Value="0,0,0,25" /> + </Style> + <Style x:Key="FooterStyle" TargetType="TextBlock"> + <Setter Property="Foreground" Value="{StaticResource ApplicationForegroundThemeBrush}"/> + <Setter Property="FontFamily" Value="Segoe UI Light" /> + <Setter Property="FontSize" Value="12" /> + <Setter Property="Margin" Value="0,8,0,0" /> + </Style> + <Style x:Key="ButtonStyle" TargetType="Button"> + <Setter Property="Foreground" Value="White"/> + <Setter Property="Background" Value="Gray"/> + </Style> + </ResourceDictionary> + </Application.Resources> +</Application> |