Skip to content

Commit 24f22d6

Browse files
committed
Remove namespace
1 parent 43de39a commit 24f22d6

File tree

2 files changed

+7
-11
lines changed

2 files changed

+7
-11
lines changed

Microsoft.Toolkit.Uwp.UI.Controls.Core/DropShadowPanel/DropShadowPanel.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
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 Microsoft.Toolkit.Uwp.UI.Controls.Core.DropShadowPanel;
65
using System;
76
using System.Numerics;
87
using Windows.UI;
Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
using Windows.UI.Composition;
22

3-
namespace Microsoft.Toolkit.Uwp.UI.Controls.Core.DropShadowPanel
3+
/// <summary>
4+
/// Any user control can implement this interface to provide a custom alpha mask to it's parent <see cref="DropShadowPanel"/>
5+
/// </summary>
6+
public interface IAlphaMaskProvider
47
{
58
/// <summary>
6-
/// Any user control can implement this interface to provide a custom alpha mask to it's parent <see cref="DropShadowPanel"/>
9+
/// This method should return the appropiate alpha mask to be used in the shadow of this control
710
/// </summary>
8-
public interface IAlphaMaskProvider
9-
{
10-
/// <summary>
11-
/// This method should return the appropiate alpha mask to be used in the shadow of this control
12-
/// </summary>
13-
/// <returns>The alpha mask as a composition brush</returns>
14-
CompositionBrush GetAlphaMask();
15-
}
11+
/// <returns>The alpha mask as a composition brush</returns>
12+
CompositionBrush GetAlphaMask();
1613
}

0 commit comments

Comments
 (0)