Open arifu-dev opened 2 hours ago
Please use layout.Views.Clear(). Those are for high level access.
layout.Views.Clear()
Does not work either, the views remain visible.
However they do disappear if I resize the window, I assume that forces all the views to be fully invalidated.
layout.Children.Clear();
does not remove any child views, removing them individually withlayout.Children.RemoveAt(i);
works as expected.