File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed
Microsoft.Toolkit.Uwp.UI.Media/Enums Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change 1+ using System ;
2+ using System . Collections . Generic ;
3+ using System . Linq ;
4+ using System . Text ;
5+ using System . Threading . Tasks ;
6+
7+ namespace Microsoft . Toolkit . Uwp . UI . Media
8+ {
9+ /// <summary>
10+ /// The method that shadows deriving from <see cref="AttachedCardShadowBase"/> use when clipping their inner content.
11+ /// </summary>
12+ public enum InnerContentClipMode
13+ {
14+ /// <summary>
15+ /// Use <see cref="Windows.UI.Composition.CompositionMaskBrush"/> to clip inner content.
16+ /// </summary>
17+ /// <remarks>
18+ /// This mode has better performance than <see cref="CompositionGeometricClip"/>.
19+ /// </remarks>
20+ CompositionMaskBrush ,
21+
22+ /// <summary>
23+ /// Use <see cref="Windows.UI.Composition.CompositionGeometricClip"/> to clip inner content.
24+ /// </summary>
25+ /// <remarks>
26+ /// Content clipped in this mode will have smoother corners than when using <see cref="CompositionMaskBrush"/>.
27+ /// </remarks>
28+ CompositionGeometricClip
29+ }
30+ }
You can’t perform that action at this time.
0 commit comments