summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/Issues/Bz46921.xaml
blob: ff32f20360ba667e27a39caaed0687933ba40c47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?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.Bz46921">
	<ContentPage.Resources>
		<ResourceDictionary>
			<Thickness x:Key="thickness0">4,20,4,20</Thickness>
			<Thickness
				x:Key="thickness1"
				Left="4"
				Top="20"
				Bottom="20"
				Right="4"/>

			<Thickness x:Key="thickness2">
				<Thickness.Left>
					4
				</Thickness.Left>
				<Thickness.Top>
					20
				</Thickness.Top>
				<Thickness.Bottom>
					20
				</Thickness.Bottom>
				<Thickness.Right>
					4
				</Thickness.Right>
			</Thickness>

			<Thickness x:Key="thickness3">
				<Thickness.Left>
					<x:Double>4</x:Double>
				</Thickness.Left>
				<Thickness.Top>
					<x:Double>20</x:Double>
				</Thickness.Top>
				<Thickness.Bottom>
					<x:Double>20</x:Double>
				</Thickness.Bottom>
				<Thickness.Right>
					<x:Double>4</x:Double>
				</Thickness.Right>
			</Thickness>
		</ResourceDictionary>
	</ContentPage.Resources>
</ContentPage>