~paparazzi-uav/paparazzi/v5.0-manual

« back to all changes in this revision

Viewing changes to sw/ext/opencv_bebop/opencv/samples/winrt/ImageManipulations/sample-utils/SampleTemplateStyles.xaml

  • Committer: Paparazzi buildbot
  • Date: 2016-05-18 15:00:29 UTC
  • Revision ID: felix.ruess+docbot@gmail.com-20160518150029-e8lgzi5kvb4p7un9
Manual import commit 4b8bbb730080dac23cf816b98908dacfabe2a8ec from v5.0 branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!--
 
2
//*********************************************************
 
3
//
 
4
// Copyright (c) Microsoft. All rights reserved.
 
5
// THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF
 
6
// ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY
 
7
// IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR
 
8
// PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.
 
9
//
 
10
//*********************************************************
 
11
-->
 
12
<ResourceDictionary
 
13
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
 
14
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
 
15
 
 
16
    <Style x:Key="TitleTextStyle" TargetType="TextBlock">
 
17
        <Setter Property="FontFamily" Value="Segoe UI Light" />
 
18
        <Setter Property="FontSize" Value="16" />
 
19
    </Style>
 
20
    <Style x:Key="HeaderTextStyle" TargetType="TextBlock">
 
21
        <Setter Property="FontFamily" Value="Segoe UI Semilight" />
 
22
        <Setter Property="FontSize" Value="26.667" />
 
23
        <Setter Property="Margin" Value="0,0,0,25" />
 
24
    </Style>
 
25
    <Style x:Key="H2Style" TargetType="TextBlock">
 
26
        <Setter Property="FontFamily" Value="Segoe UI" />
 
27
        <Setter Property="FontSize" Value="14.667" />
 
28
        <Setter Property="Margin" Value="0,0,0,0" />
 
29
    </Style>
 
30
    <Style x:Key="SubheaderTextStyle" TargetType="TextBlock">
 
31
        <Setter Property="FontFamily" Value="Segoe UI Semilight" />
 
32
        <Setter Property="FontSize" Value="14.667" />
 
33
        <Setter Property="Margin" Value="0,0,0,5" />
 
34
    </Style>
 
35
    <Style x:Key="BasicTextStyle" TargetType="TextBlock">
 
36
        <Setter Property="FontFamily" Value="Segoe UI Light" />
 
37
        <Setter Property="FontSize" Value="16" />
 
38
    </Style>
 
39
    <Style x:Key="SeparatorStyle" TargetType="TextBlock">
 
40
        <Setter Property="FontFamily" Value="Segoe UI" />
 
41
        <Setter Property="FontSize" Value="9" />
 
42
    </Style>
 
43
    <Style x:Key="FooterStyle" TargetType="TextBlock">
 
44
        <Setter Property="FontFamily" Value="Segoe UI" />
 
45
        <Setter Property="FontSize" Value="12" />
 
46
        <Setter Property="Margin" Value="0,8,0,0" />
 
47
    </Style>
 
48
    <Style x:Key="HyperlinkStyle" TargetType="HyperlinkButton">
 
49
        <Setter Property="Padding" Value="5"/>
 
50
    </Style>
 
51
</ResourceDictionary>