I am not able to use EventToCommand in my Windows Phone 8.1 App.
xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity"
xmlns:cmd="clr-namespace:GalaSoft.MvvmLight.Command;assembly=GalaSoft.MvvmLight.Extras.WP8"
I tried it also with assembly=GalaSoft.MvvmLight.Extras.WP81...
<controls:PivotItem Name="pivotItem">
<i:Interaction.Triggers>
<i:EventTrigger EventName="SelectionChanged">
<cmd:EventToCommand Command="{Binding SelectServiceCommand}"
CommandParameter="{Binding SelectedIndex, ElementName=pivotItem}"/>
</i:EventTrigger>
<!-- other stuff -->
</i:Interaction.Triggers>
I get the following erros:
Can someone help me please?
Are you aiming at Silverlight, or WinRT (Universal Apps) kind of Windows Phone 8.1?
If you have chosen the second option, then in this blog post MVVM Light author explains the lack of support for EventToCommand - basically in WinRT there's already a mechanism similiar to the EventToCommand - Behaviours.