summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla23942.xaml
blob: d207cd235f733a6ddbbe98b5b6aef02072bbbcbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?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>