We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3322f10 commit 2aa0be9Copy full SHA for 2aa0be9
src/SourceGenerators/Uno.UI.SourceGenerators/XamlGenerator/XamlFileGenerator.cs
@@ -4385,6 +4385,9 @@ string Inner()
4385
case "Windows.Foundation.Point":
4386
return "new Windows.Foundation.Point(" + SplitAndJoin(memberValue) + ")";
4387
4388
+ case "System.Numerics.Vector3":
4389
+ return "new global::System.Numerics.Vector3(" + memberValue + ")";
4390
+
4391
case "Windows.UI.Xaml.Input.InputScope":
4392
return "new global::Windows.UI.Xaml.Input.InputScope { Names = { new global::Windows.UI.Xaml.Input.InputScopeName { NameValue = global::Windows.UI.Xaml.Input.InputScopeNameValue." + memberValue + "} } }";
4393
0 commit comments