21 строка
774 B
Plaintext
21 строка
774 B
Plaintext
|
<?xml version="1.0" encoding="utf-8" ?>
|
||
|
<local:TestContentPage xmlns="http://xamarin.com/schemas/2014/forms"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||
|
xmlns:test="clr-namespace:Xamarin.Forms.Controls.Issues"
|
||
|
xmlns:local="clr-namespace:Xamarin.Forms.Controls"
|
||
|
x:Class="Xamarin.Forms.Controls.Issues.Bugzilla23942">
|
||
|
|
||
|
<local:TestContentPage.Resources>
|
||
|
<ResourceDictionary>
|
||
|
<test:Bugzilla23942Options x:Key="opts"
|
||
|
Text="{Binding DoesItWork}" />
|
||
|
</ResourceDictionary>
|
||
|
</local:TestContentPage.Resources>
|
||
|
|
||
|
<local:TestContentPage.Content>
|
||
|
<StackLayout>
|
||
|
<test:Bugzilla23942Label x:Name="label" Options="{DynamicResource opts}" />
|
||
|
</StackLayout>
|
||
|
</local:TestContentPage.Content>
|
||
|
|
||
|
</local:TestContentPage>
|