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)
1838
BindableProperty.Create(nameof(Shadow), typeof(
Shadow
), typeof(VisualElement), defaultValue: null,
1853
public
Shadow
Shadow
1855
get { return (
Shadow
)GetValue(ShadowProperty); }
2133
var
shadow = Shadow;
2149
var
shadow = Shadow;