Skip to content

Commit

Permalink
feat: Vector3 XAML conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinZikmund committed Sep 9, 2021
1 parent 3322f10 commit 2aa0be9
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4385,6 +4385,9 @@ string Inner()
case "Windows.Foundation.Point":
return "new Windows.Foundation.Point(" + SplitAndJoin(memberValue) + ")";

case "System.Numerics.Vector3":
return "new global::System.Numerics.Vector3(" + memberValue + ")";

case "Windows.UI.Xaml.Input.InputScope":
return "new global::Windows.UI.Xaml.Input.InputScope { Names = { new global::Windows.UI.Xaml.Input.InputScopeName { NameValue = global::Windows.UI.Xaml.Input.InputScopeNameValue." + memberValue + "} } }";

Expand Down

0 comments on commit 2aa0be9

Please sign in to comment.