2016-04-18 00:59:44 +03:00
|
|
|
<?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>
|
2016-04-18 19:44:21 +03:00
|
|
|
<Color x:Key="TestingColor">#454545</Color>
|
|
|
|
<Label x:Key="label" BackgroundColor="{StaticResource TestingColor}" />
|
2016-04-18 00:59:44 +03:00
|
|
|
</ResourceDictionary>
|