Hello,
I have the following situation.
My Sfrotator in my parent ContentPage, has defined a SfRotator, bound with the ViewModel
items.Add(new SfRotatorItem() { ItemContent = new Step1() });
items.Add(new SfRotatorItem() { ItemContent = new Step2() });
items.Add(new SfRotatorItem() { ItemContent = new Step3() });
items.Add(new SfRotatorItem() { ItemContent = new Step4() });
Inside Step1, that is a ContenView, I have a dataForm bound to the view Model:
<dataform:SfDataForm DataObject="{Binding ChildInfo}" x:Name="dataForm" ValidationMode="LostFocus" LayoutOptions="Default" LabelPosition="Top" Grid.Row="0" CommitMode="LostFocus">
</dataform:SfDataForm>
while ChildInfo:
public ChildRegistration ChildInfo
{
get { return this._child; }
set
{
this._child = value;
RaisePropertyChanged(() => ChildInfo);
}
}
The problem is that I have a blank page as I see the Step1 page.
If I exit from step1 and then reload the page, I see finally the dataForm