Skip to content

Commit 36235df

Browse files
committed
Moved carousel automation peers into their own namespace
1 parent 0ccbedc commit 36235df

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
// See the LICENSE file in the project root for more information.
44

55
using System;
6-
using System.Collections;
76
using System.Collections.Generic;
87
using System.Linq;
8+
using Microsoft.Toolkit.Uwp.UI.Automation.Peers;
99
using Microsoft.Toolkit.Uwp.UI.Extensions;
1010
using Windows.Foundation;
1111
using Windows.UI.Xaml;

Microsoft.Toolkit.Uwp.UI.Controls/Carousel/CarouselAutomationPeer.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@
44

55
using System.Collections.Generic;
66
using System.Linq;
7+
using Microsoft.Toolkit.Uwp.UI.Controls;
78
using Windows.UI.Xaml.Automation.Peers;
89
using Windows.UI.Xaml.Automation.Provider;
910
using Windows.UI.Xaml.Controls;
1011

11-
namespace Microsoft.Toolkit.Uwp.UI.Controls
12+
namespace Microsoft.Toolkit.Uwp.UI.Automation.Peers
1213
{
1314
/// <summary>
1415
/// Defines a framework element automation peer for the <see cref="Carousel"/> control.

Microsoft.Toolkit.Uwp.UI.Controls/Carousel/CarouselItem.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
// See the LICENSE file in the project root for more information.
44

55
using System;
6+
using Microsoft.Toolkit.Uwp.UI.Automation.Peers;
67
using Windows.UI.Xaml;
78
using Windows.UI.Xaml.Automation.Peers;
8-
using Windows.UI.Xaml.Controls;
99
using Windows.UI.Xaml.Controls.Primitives;
1010
using Windows.UI.Xaml.Input;
1111

Microsoft.Toolkit.Uwp.UI.Controls/Carousel/CarouselItemAutomationPeer.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@
33
// See the LICENSE file in the project root for more information.
44

55
using System.Linq;
6+
using Microsoft.Toolkit.Uwp.UI.Controls;
67
using Windows.UI.Xaml.Automation.Peers;
78
using Windows.UI.Xaml.Automation.Provider;
89

9-
namespace Microsoft.Toolkit.Uwp.UI.Controls
10+
namespace Microsoft.Toolkit.Uwp.UI.Automation.Peers
1011
{
1112
/// <summary>
1213
/// Defines a framework element automation peer for the <see cref="CarouselItem"/>.

0 commit comments

Comments
 (0)