WPF - MVVM - 如何將ComboBox的Selectchange事件binding到ViewModel


將所有的事件,屬性,都映射到ViewModel中。好處多多,以后開發盡量用這種模式。

解決方法:

使用System.Windows.Interactivity.dll,添加該dll到項目引用

xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity"

ComboBox映射的代碼:

<ComboBox VerticalAlignment="Center" HorizontalAlignment="Left" MinWidth="120" Margin="10,0,0,0"
                              x:Name="cboTest" 
                              DisplayMemberPath="FamilyName"  
                              SelectedValuePath="IdFamily" 
                              IsReadOnly="True"
                              ItemsSource="{Binding ListFamily}"
                              SelectedValue="{Binding Path=ViewModel.SelectedFamilyNameID, Mode=TwoWay, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type UserControl}}}"
                              Validation.ErrorTemplate="{x:Null}"
                              Visibility="{Binding ComboBoxVisibility}"
                              >
                            <i:Interaction.Triggers>
                                <i:EventTrigger EventName="SelectionChanged">
                                    <i:InvokeCommandAction Command="{Binding FamilySelectionChangedCommand}"   
                                                       CommandParameter="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}},Path=DataContext}"/>
                                </i:EventTrigger>
                            </i:Interaction.Triggers>
                        </ComboBox>

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM