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 0297a3d commit ae9ca0aCopy full SHA for ae9ca0a
components/LayoutTransformControl/src/LayoutTransformControl.cs
@@ -2,6 +2,11 @@
2
// The .NET Foundation licenses this file to you under the MIT license.
3
// See the LICENSE file in the project root for more information.
4
using System.Diagnostics.CodeAnalysis;
5
+#if WINAPPSDK
6
+using Microsoft.UI.Xaml.Media;
7
+#else
8
+using Windows.UI.Xaml.Media;
9
+#endif
10
11
namespace CommunityToolkit.WinUI.Controls;
12
@@ -455,5 +460,5 @@ private Size ComputeLargestTransformedSize(Size arrangeBounds)
455
460
456
461
return computedSize;
457
462
}
458
- #pragma warning restore CS8619
463
+#pragma warning restore CS8619
459
464
0 commit comments