WPF calling commands via events
The simplest way to do this is using an interaction trigger. <Grid xmlns:i=”http://schemas.microsoft.com/expression/2010/interactivity”> <i:Interaction.Triggers> <i:EventTrigger EventName=”SomeEvent”> <i:InvokeCommandAction Command=”{Binding Path=SomeCommand, Mode=OneWay}”/> </i:EventTrigger> </i:Interaction.Triggers> </Grid> I have added this for posterity sake.