summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml/XamlParser.cs
diff options
context:
space:
mode:
authorStephane Delcroix <stephane@delcroix.org>2016-08-15 22:06:11 +0200
committerJason Smith <jason.smith@xamarin.com>2016-08-15 13:06:11 -0700
commit775df09a3e45e90128f9047e8618461d4c4411a0 (patch)
tree3bfb63278a218c9d1f753f5fdafb7de659a048b5 /Xamarin.Forms.Xaml/XamlParser.cs
parent0390ea034694d4ad548e9f46cf6f3fa3f291d041 (diff)
downloadxamarin-forms-775df09a3e45e90128f9047e8618461d4c4411a0.tar.gz
xamarin-forms-775df09a3e45e90128f9047e8618461d4c4411a0.tar.bz2
xamarin-forms-775df09a3e45e90128f9047e8618461d4c4411a0.zip
[Xaml] x:Static in x:Arguments (#288)
* [Xaml] Support x:Static as x:Arguments * [XamlC] allow x:Static in x:Arguments * fix typo, remove commented code
Diffstat (limited to 'Xamarin.Forms.Xaml/XamlParser.cs')
-rw-r--r--Xamarin.Forms.Xaml/XamlParser.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/Xamarin.Forms.Xaml/XamlParser.cs b/Xamarin.Forms.Xaml/XamlParser.cs
index 730c1624..7dd79d77 100644
--- a/Xamarin.Forms.Xaml/XamlParser.cs
+++ b/Xamarin.Forms.Xaml/XamlParser.cs
@@ -223,6 +223,9 @@ namespace Xamarin.Forms.Xaml
case "x:FactoryMethod":
propertyName = XmlName.xFactoryMethod;
break;
+ case "x:Arguments":
+ propertyName = XmlName.xArguments;
+ break;
default:
Debug.WriteLine("Unhandled {0}", reader.Name);
continue;