Skip to content

Commit c1e49e8

Browse files
committed
Move usings outside of ns
1 parent 0446bdd commit c1e49e8

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

Microsoft.Toolkit.Uwp.UI.Controls/TileControl/TileControl.cs

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,23 @@
22
// The .NET Foundation licenses this file to you under the MIT license.
33
// See the LICENSE file in the project root for more information.
44

5+
using System;
6+
using System.Collections.Generic;
7+
using System.Linq;
8+
using System.Numerics;
9+
using System.Threading;
10+
using System.Threading.Tasks;
11+
using Microsoft.Toolkit.Uwp.UI.Animations.Expressions;
12+
using Microsoft.Toolkit.Uwp.UI.Extensions;
13+
using Windows.Foundation;
14+
using Windows.UI.Composition;
15+
using Windows.UI.Xaml;
16+
using Windows.UI.Xaml.Controls;
17+
using Windows.UI.Xaml.Hosting;
18+
using Windows.UI.Xaml.Media;
19+
520
namespace Microsoft.Toolkit.Uwp.UI.Controls
621
{
7-
using System;
8-
using System.Collections.Generic;
9-
using System.Linq;
10-
using System.Numerics;
11-
using System.Threading;
12-
using System.Threading.Tasks;
13-
using Microsoft.Toolkit.Uwp.UI.Animations.Expressions;
14-
using Microsoft.Toolkit.Uwp.UI.Extensions;
15-
using Windows.Foundation;
16-
using Windows.UI.Composition;
17-
using Windows.UI.Xaml;
18-
using Windows.UI.Xaml.Controls;
19-
using Windows.UI.Xaml.Hosting;
20-
using Windows.UI.Xaml.Media;
21-
2222
/// <summary>
2323
/// A ContentControl that show an image repeated many times.
2424
/// The control can be synchronized with a ScrollViewer and animated easily.

0 commit comments

Comments
 (0)