EventToCommand fails to pass Command Parameter on Load Event

When attached to the Load event of the page or user control the EventToCommand successfully calls the handler in the ViewModel but does not pass the CommandParameter. However, the same XAML is attached to another event, button click for example, the Command handler receives the databound data as its parameter. Xaml:

<i:EventTrigger EventName="Loaded" SourceObject="{Binding ElementName=Control}"> <Command:EventToCommand x:Name="etcLoad" Command="{Binding LoadCommand}" CommandParameter="{Binding Target, ElementName=Control}" /> </i:EventTrigger>

Target is a string DP on the View.

VM Code:

    internal void Load(string p_Param)
    {
        this.Initialise();
    }

    public RelayCommand<string> LoadCommand { get; private set; }

and the Command is assigned so:

    this.LoadCommand = new RelayCommand<string>(this.Load);

I am almost certain that the problem lies with the binding being done later than the assignment to the Target DP or something similar. I am interested in finding a solution for this ASAP or some other way that I might get a string out of the View and into the ViewModel where the string is assigned from the OnNavigateTo override. The goal is to provide the selection of a tab based on a query property supplied via the URI i.e. "/Views/DisplayTabDetails?Tab=Tab1" or similar.

Many thanks in advance.

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

Use the PassEventArgsToCommand property to indicate that the event args should be passed to the command. In your XAML you should, therefore, use:

<i:EventTrigger EventName="Loaded" 
                SourceObject="{Binding ElementName=Control}"
> 
    <Command:EventToCommand x:Name="etcLoad" 
                            Command="{Binding LoadCommand}" 
                            PassEventArgsToCommand="True" 
    /> 
</i:EventTrigger>

Edit

Some events fire before the user interaction can take place. The approach normally taken in this case is to call your command from code behind. In this post you can see the concept, you obviously will have to change it to the loaded event and your needs, the concept and the reason for it are the same, though.

link|improve this answer
Yes, this is possible, however in the case of the Load event using public RelayCommand<RoutedEventArgs> LoadCommand{get; private set;} results in a null value for the parameter on the command handler. Seems like there is something with the temporal aspect that is coming into paly here - the parameter has just not been set. – Intelligence4 Oct 21 '11 at 19:07
Added a link to a solution for the problem, as well as some lines here. i would have posted the sample directly but writing code on a mobile device is just a pain in the behind ... sorry but I hope the sample still helps! – Obalix Oct 22 '11 at 10:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.