18 строки
544 B
XML
18 строки
544 B
XML
<?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.Issues.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>
|