summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/XStatic.xaml
blob: 7c2910cdf81ee03729ea4223fd64ae42c6f70edb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?xml version="1.0" encoding="UTF-8"?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
			 xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
			 xmlns:local="clr-namespace:Xamarin.Forms.Xaml.UnitTests"
			 x:Class="Xamarin.Forms.Xaml.UnitTests.XStatic">
	<StackLayout>
		<Label x:Name="staticproperty"
			   Text="{x:Static Member=local:MockxStatic.MockStaticProperty}" />
		<Label x:Name="memberisoptional"
			   Text="{x:Static local:MockxStatic.MockStaticProperty}" />
		<Label x:Name="color"
			   TextColor="{x:Static local:MockxStatic.BackgroundColor}" />
	</StackLayout>
</ContentPage>