1 instantiation of Shadow
Microsoft.Maui.Controls (1)
Frame\Frame.cs (1)
102 return new Shadow() { Radius = 5, Opacity = 0.8f, Offset = new Point(0, 0), Brush = Brush.Black };
9 references to Shadow
Microsoft.Maui.Controls (9)
Shadow.cs (4)
9 public static readonly BindableProperty RadiusProperty = BindableProperty.Create(nameof(Radius), typeof(float), typeof(Shadow), 10f); 12 public static readonly BindableProperty OpacityProperty = BindableProperty.Create(nameof(Opacity), typeof(float), typeof(Shadow), 1f); 15 public static readonly BindableProperty BrushProperty = BindableProperty.Create(nameof(Brush), typeof(Brush), typeof(Shadow), Brush.Black); 18 public static readonly BindableProperty OffsetProperty = BindableProperty.Create(nameof(Offset), typeof(Point), typeof(Shadow), null);
VisualElement\VisualElement.cs (5)
1835 BindableProperty.Create(nameof(Shadow), typeof(Shadow), typeof(VisualElement), defaultValue: null, 1850 public Shadow Shadow 1852 get { return (Shadow)GetValue(ShadowProperty); } 2144 var shadow = Shadow; 2160 var shadow = Shadow;