Skip to content

Commit 1995547

Browse files
committed
[Android] box view properties fix (dotnet#19926)
1 parent 27d5e5a commit 1995547

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
namespace Microsoft.Maui.Controls
2+
{
3+
public partial class BoxView
4+
{
5+
private protected override void OnHandlerChangedCore()
6+
{
7+
base.OnHandlerChangedCore();
8+
9+
if (Handler != null)
10+
{
11+
foreach (var prop in AndroidBatchPropertyMapper<BoxView, IViewHandler>.SkipList)
12+
{
13+
Handler.UpdateValue(prop);
14+
}
15+
}
16+
}
17+
}
18+
}
19+

0 commit comments

Comments
 (0)