summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/X2009Primitives.xaml
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Xaml.UnitTests/X2009Primitives.xaml')
-rw-r--r--Xamarin.Forms.Xaml.UnitTests/X2009Primitives.xaml42
1 files changed, 42 insertions, 0 deletions
diff --git a/Xamarin.Forms.Xaml.UnitTests/X2009Primitives.xaml b/Xamarin.Forms.Xaml.UnitTests/X2009Primitives.xaml
new file mode 100644
index 00000000..a7a91edc
--- /dev/null
+++ b/Xamarin.Forms.Xaml.UnitTests/X2009Primitives.xaml
@@ -0,0 +1,42 @@
+<?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.X2009Primitives">
+ <ContentPage.Resources>
+ <ResourceDictionary>
+ <x:String x:Key="aString">foobar</x:String>
+ <x:String x:Key="defaultString"/>
+
+ <x:Object x:Key="syncHandle"/>
+
+ <x:Boolean x:Key="falsebool">false</x:Boolean>
+ <x:Boolean x:Key="truebool">true</x:Boolean>
+ <x:Boolean x:Key="defaultbool"/>
+
+ <x:Char x:Key="singleChar">f</x:Char>
+ <x:Char x:Key="multipleChar">foo</x:Char>
+ <x:Char x:Key="defaultChar"/>
+
+ <x:Decimal x:Key="aDecimal">1000.0</x:Decimal>
+ <x:Decimal x:Key="defaultDecimal"/>
+ <x:Single x:Key="aSingle">42.2</x:Single>
+ <x:Single x:Key="defaultSingle"/>
+ <x:Double x:Key="aDouble">42.3</x:Double>
+ <x:Double x:Key="aNegativeDouble">-42.3</x:Double>
+ <x:Double x:Key="defaultDouble"/>
+ <x:Byte x:Key="aByte">54</x:Byte>
+ <x:Byte x:Key="defaultByte"/>
+ <x:Int16 x:Key="anInt16">43</x:Int16>
+ <x:Int16 x:Key="defaultInt16"/>
+ <x:Int32 x:Key="anInt32">44</x:Int32>
+ <x:Int32 x:Key="defaultInt32"/>
+ <x:Int64 x:Key="anInt64">45</x:Int64>
+ <x:Int64 x:Key="defaultInt64"/>
+ <x:TimeSpan x:Key="aTimeSpan">6.12:14:45.3448000</x:TimeSpan>
+ <x:TimeSpan x:Key="defaultTimeSpan"/>
+ <x:Uri x:Key="anUri">http://xamarin.com/forms</x:Uri>
+ <x:Uri x:Key="defaultUri"/>
+ </ResourceDictionary>
+ </ContentPage.Resources>
+</ContentPage> \ No newline at end of file