Now you can accomplish what EventToCommand used, using the Behaviors SDK (XAML) for Visual Studio 2013 without using other tools (@localJoost WinRTBehaviors is now not recommended after he helped all of us at these moments):

An example of its use may be the following:
<Slider x:Name="Sl_VolumeSilder"> <Interactivity:Interaction.Behaviors> <Core:EventTriggerBehavior EventName="ValueChanged"> <Core:InvokeCommandAction Command="{Binding OnSliderValueChangedCommand}" CommandParameter="{Binding ElementName=Sl_VolumeSilder, Path=Value}"/> </Core:EventTriggerBehavior> </Interactivity:Interaction.Behaviors> </Slider>
Where interactivity and core are indicated:
xmlns:Interactivity="using:Microsoft.Xaml.Interactivity" xmlns:Core="using:Microsoft.Xaml.Interactions.Core"
source share