summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/SharedResourceDictionary.xaml
blob: b6400e21f6896bcad0243897ddecf891da58b121 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0" encoding="UTF-8"?>
<ResourceDictionary xmlns="http://xamarin.com/schemas/2014/forms"
		xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
		x:Class="Xamarin.Forms.Xaml.UnitTests.SharedResourceDictionary">
	<Style x:Key="sharedfoo" TargetType="Label">
		<Setter Property="TextColor" Value="Pink" />
	</Style>
	<Style x:Key="sharedbar" TargetType="Label">
		<Setter Property="TextColor" Value="Blue" />
	</Style>
	<Style TargetType="Label">
		<Setter Property="TextColor" Value="Red" />
	</Style>
	<Color x:Key="TestingColor">#454545</Color>
	<Label x:Key="label" BackgroundColor="{StaticResource TestingColor}" />
</ResourceDictionary>