Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

OnInitialize and OnActivate are not called on child View Models

I expected that child View Models inheriting from Screen would participate in the Parent Screen's life-cycle. However, it appears this is not the case. For example:

public class ParentViewModel : Screen
{
    public ChildViewModel Child { get; set; }

    public ParentViewModel(ChildViewModel childViewModel)
    {
        this.Child = childViewModel;
    }

    public override void OnInitialize() { // called - as expected }

    public override void OnActivate() { // called - as expected }

    public override void OnDeactivate() { // called - as expected }
}

public class ChildViewModel : Screen
{
    public override void OnInitialize() { // not called - why? }

    public override void OnActivate() { // not called - why? }

    public override void OnDeactivate() { // not called - why? }
}

Is it possible to have a child Screen participate in the parent Screen's life-cycle?

like image 916
JulianM Avatar asked Oct 25 '11 05:10

JulianM


3 Answers

It seems this behaviour is not by default and the parent has to be told to 'conduct' child View Models using the ConductWith method, as follows:

public class ParentViewModel : Screen
{
    public ChildViewModel Child { get; set; }

    public ParentViewModel(ChildViewModel childViewModel)
    {
        this.Child = childViewModel;

        Child.ConductWith(this);
    }
}

This ensures the ChildViewModel will be initialized, activated and deactivated at the same time as the parent. The ActivateWith method can be used if you only need to initialize/activate the child.

like image 166
JulianM Avatar answered Oct 11 '22 03:10

JulianM


The other option is to make the parent a Conductor type and make the child the active item.

like image 38
devdigital Avatar answered Oct 11 '22 02:10

devdigital


Other solution is to use

protected override void OnViewAttached(object view, object context)

instead of OnActivated()

like image 37
Kishore Kumar Avatar answered Oct 11 '22 03:10

Kishore Kumar