Hỏi đáp
Chia sẻ kiến thức, cùng nhau phát triển
Mình muốn sử dụng event SelectionChanged của combobox trong MVVM. mình dùng cách của Kteam. mình chẳng hiểu sao mà lúc chạy thì nó bỏ qua command của event selectionChanged ạ. ai giúp mình mới.
Mình muốn sử dụng event SelectionChanged của combobox trong MVVM. mình dùng cách của Kteam. mình chẳng hiểu sao mà lúc chạy thì nó bỏ qua command của event selectionChanged ạ. ai giúp mình mới.
Để sử dụng tính năng này, Bạn cần đăng nhập bằng tài khoản Howkteam.
Đăng nhập
Để xem được nội dung và giúp Kteam duy trì hoạt động.
Bạn vui lòng tắt Adblock trên website howkteam.vn nhé!
<i:Interaction.Triggers>
<i:EventTrigger EventName="SelectionChanged">
<i:InvokeCommandAction Command="{Binding SelectedChangedCommand}" CommandParameter="{Binding ElementName=cbxCategory,Path=SelectedItem}"/>
</i:EventTrigger>
</i:Interaction.Triggers>
<ComboBox materialDesign:HintAssist.Hint="Category" Margin="5" x:Name="cbxCategory" SelectedItem ="{Binding SelectedCategory}" Style="{StaticResource MaterialDesignFloatingHintComboBox}">
<ComboBoxItem Content="1"/>
<ComboBoxItem Content="2"/>
</ComboBox>
SelectedChangedCommand = new RelayCommand<object>((p)=> { return true; }, (p)=> {
MessageBox.Show("Hello World");
});