3 instantiations of Shadow
Microsoft.Maui.Controls (3)
ShadowTypeConverter.cs (3)
88
return new
Shadow
101
return new
Shadow
116
return new
Shadow
12 references to Shadow
Microsoft.Maui.Controls (12)
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);
ShadowTypeConverter.cs (3)
36
=> destinationType == typeof(
Shadow
);
127
throw new InvalidOperationException($"Cannot convert \"{strValue}\" into {typeof(
Shadow
)}.", ex);
150
if (value is
Shadow
shadow)
VisualElement\VisualElement.cs (5)
1900
BindableProperty.Create(nameof(Shadow), typeof(
Shadow
), typeof(VisualElement), defaultValue: null,
1916
public
Shadow
Shadow
1918
get { return (
Shadow
)GetValue(ShadowProperty); }
2196
var
shadow = Shadow;
2212
var
shadow = Shadow;