Can anyone tell me what the actual syntax is for EventToCommand. From what i believe is that EventToCommand works with Silverlight / WPF and WP7 hence i think its a better choice to go down.

From what i believe, i can add any click event and get it forced into my viewmodel but i am having an issue in finding the best way to do this.

I know you can add it without blend, but are there snippets available?

Or is there an easier way to add it via VS 2010 ?

Any help or anybody know of good tutorial on this would really help

Thanks

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Syntax for the Loaded event.

<i:Interaction.Triggers>
    <i:EventTrigger EventName="Loaded">
        <cmd:EventToCommand Command="{Binding Mode=OneWay, Path=LoadedCommand}"
                            PassEventArgsToCommand="True" />
    </i:EventTrigger>
</i:Interaction.Triggers>
link|improve this answer
feedback

Here's a post that talks about all you need to know about EventToCommand from the creator of MVVMLight ;)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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