While developing a small SL solution I have encountered the following issue: I have an EventTrigger of hooking the selected items inside the data grid. The problem is that the call to the correspondent item in VM fails occasionally. Is there any cure for this?
Code:
<i:Interaction.Triggers>
<i:EventTrigger EventName="SelectionChanged">
<cmd:EventToCommand
Command="{Binding SelectionChangedCommand}"
CommandParameter="{Binding SelectedItems,ElementName=dataGrid1}" />
</i:EventTrigger>
</i:Interaction.Triggers>