summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/Issues/Bz43694.xaml
blob: 9fcc0c006f93e8420dac2fd560688380a94c1c10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
	xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
	x:Class="Xamarin.Forms.Xaml.UnitTests.Bz43694">
	<ContentPage.Resources>
		<ResourceDictionary>
			<x:String x:Key="Dark">Dark</x:String>
			<x:String x:Key="Light">
				<OnPlatform x:TypeArguments="x:String">
					<OnPlatform.iOS>OpenSans-Light</OnPlatform.iOS>
					<OnPlatform.Android>OpenSans-Light</OnPlatform.Android>
					<OnPlatform.WinPhone>/Assets/Fonts/OpenSans-Light.ttf#Open Sans</OnPlatform.WinPhone>
				</OnPlatform>
			</x:String>
		</ResourceDictionary>
	</ContentPage.Resources>
	<Label Text="{StaticResource Light}" 
		VerticalOptions="Center"
		HorizontalOptions="Center"
		x:Name="label"/>
</ContentPage>