File tree Expand file tree Collapse file tree 2 files changed +7
-11
lines changed
Microsoft.Toolkit.Uwp.UI.Controls.Core/DropShadowPanel Expand file tree Collapse file tree 2 files changed +7
-11
lines changed Original file line number Diff line number Diff line change 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 ;
65using System ;
76using System . Numerics ;
87using Windows . UI ;
Original file line number Diff line number Diff line change 11using 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}
You can’t perform that action at this time.
0 commit comments