summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Issue1641.xaml
blob: ddc824a030938082a432497be4fdf13dcaa274ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?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.Controls.Issue1641">
	<ContentPage.Resources>
		<ResourceDictionary>
			<x:String x:Key="caption" >Hello there!</x:String>
		</ResourceDictionary>
	</ContentPage.Resources>
	<TableView>
		<TableRoot Title="x">
			<TableSection Title="y">
				<TextCell Text="{StaticResource caption}" />
			</TableSection>
		</TableRoot>
	</TableView>
</ContentPage>