xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity"
前台view页面的ComboBox :
<ComboBox Height="23" Margin="121.465,21.435,160.048,0"
VerticalAlignment="Top"
ItemsSource="{Binding SupplierList}"
DisplayMemberPath="Name"
SelectedItem="{Binding SelectedSupplier}">
//主要绑定事件
<i:Interaction.Triggers>
<i:EventTrigger EventName="SelectionChanged">
<i:InvokeCommandAction Command="{Binding selectionChangedCommand}"/>
</i:EventTrigger>