summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/Issues/Bz30684.xaml
blob: 0dff72c205ef0839d714933eab921ea609a57754 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?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.Bz30684">
	<StackLayout>
		<Label Text="Foo" x:Name="foo" />
		<ListView x:Name="listView">
			<ListView.ItemTemplate>
				<DataTemplate>
					<TextCell Text="{Binding Text, Source={x:Reference foo}}" />
				</DataTemplate>
			</ListView.ItemTemplate>
		</ListView>
	</StackLayout>
</ContentPage>