Skip to content

Commit 1298137

Browse files
committed
Address PR feedback
1 parent 1a7c00b commit 1298137

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

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

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,17 @@
44

55
using Windows.UI.Composition;
66

7-
/// <summary>
8-
/// Any user control can implement this interface to provide a custom alpha mask to it's parent <see cref="DropShadowPanel"/>
9-
/// </summary>
10-
public interface IAlphaMaskProvider
7+
namespace Microsoft.Toolkit.Uwp.UI
118
{
129
/// <summary>
13-
/// This method should return the appropiate alpha mask to be used in the shadow of this control
10+
/// Any user control can implement this interface to provide a custom alpha mask to it's parent DropShadowPanel
1411
/// </summary>
15-
/// <returns>The alpha mask as a composition brush</returns>
16-
CompositionBrush GetAlphaMask();
17-
}
12+
public interface IAlphaMaskProvider
13+
{
14+
/// <summary>
15+
/// This method should return the appropiate alpha mask to be used in the shadow of this control
16+
/// </summary>
17+
/// <returns>The alpha mask as a composition brush</returns>
18+
CompositionBrush GetAlphaMask();
19+
}
20+
}

0 commit comments

Comments
 (0)