We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc1221c commit 573dc81Copy full SHA for 573dc81
1 file changed
src/Controls/src/Core/BoxView/BoxView.cs
@@ -56,9 +56,13 @@ protected override void OnPropertyChanged([CallerMemberName] string? propertyNam
56
57
if (propertyName == BackgroundColorProperty.PropertyName ||
58
propertyName == ColorProperty.PropertyName ||
59
+ propertyName == IsVisibleProperty.PropertyName ||
60
propertyName == BackgroundProperty.PropertyName ||
61
propertyName == CornerRadiusProperty.PropertyName)
62
Handler?.UpdateValue(nameof(IShapeView.Shape));
63
+
64
+ if(propertyName == IsVisibleProperty.PropertyName)
65
+ Handler?.ToPlatform()?.UpdateBackground(this);
66
}
67
68
IShape? IShapeView.Shape => this;
0 commit comments