summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/Issues/Bz27299.xaml
blob: fd1490133e13e3d8b64089f1cb55606ce37ff436 (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"
			 x:Class="Xamarin.Forms.Xaml.UnitTests.Bz27299"
			 xmlns:local="clr-namespace:Xamarin.Forms.Xaml.UnitTests"
			 BindingContext="{Binding Bz27299, Source={StaticResource ViewModelLocator}}">
	<ContentPage.Resources>
		<ResourceDictionary>
			<local:Bz27299ViewModelLocator x:Key="ViewModelLocator" />
		</ResourceDictionary>
	</ContentPage.Resources>
	<Label x:Name="label"
		   Text="{Binding Text}" />
</ContentPage>