I'm tying to bind an IEnumerable<View> to a StackLayout.
My current solution is pretty weak Kung-Fu......
protected override void OnBindingContextChanged() { base.OnBindingContextChanged(); foreach(var v in ((MyViewModel)BindingContext).Views ) { MyDisplay.Children.Add(v); } }
Is there a better way???