File tree Expand file tree Collapse file tree 1 file changed +5
-9
lines changed
Microsoft.Toolkit.Uwp.UI.Media/Shadows Expand file tree Collapse file tree 1 file changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,9 @@ public class AttachedCardShadow : AttachedShadowBase
26
26
private static readonly TypedResourceKey < CompositionSurfaceBrush > SurfaceBrushResourceKey = "SurfaceBrush" ;
27
27
private static readonly TypedResourceKey < CompositionVisualSurface > VisualSurfaceResourceKey = "VisualSurface" ;
28
28
29
+ /// <summary>
30
+ /// The <see cref="DependencyProperty"/> for <see cref="CornerRadius"/>
31
+ /// </summary>
29
32
public static readonly DependencyProperty CornerRadiusProperty =
30
33
DependencyProperty . Register (
31
34
nameof ( CornerRadius ) ,
@@ -40,23 +43,16 @@ static AttachedCardShadow()
40
43
}
41
44
42
45
/// <summary>
43
- /// Gets or sets the roundness of the shadow's corners
46
+ /// Gets or sets the roundness of the shadow's corners.
44
47
/// </summary>
45
48
public double CornerRadius
46
49
{
47
50
get => ( double ) GetValue ( CornerRadiusProperty ) ;
48
51
set => SetValue ( CornerRadiusProperty , value ) ;
49
52
}
50
53
51
- /// <summary>
52
- /// <inheritdoc/>
53
- /// </summary>
54
54
public override bool IsSupported => SupportsCompositionVisualSurface ;
55
-
56
- /// <summary>
57
- /// <inheritdoc/>
58
- /// </summary>
59
- public override bool SupportsOnSizeChangedEvent => true ;
55
+ protected override bool SupportsOnSizeChangedEvent => true ;
60
56
61
57
protected override void OnElementContextUninitialized ( AttachedShadowElementContext context )
62
58
{
You can’t perform that action at this time.
0 commit comments