I have a combo box in my xaml with a selection command associated with it:

<ComboBox x:Name="box" d:LayoutOverrides="Height" Grid.Column="1" HorizontalAlignment="Left" MinWidth="120" FontSize="13.333" 
                    ItemsSource="{Binding Path=Movies}" DisplayMemberPath="BrandName">
                    <events:Interaction.Triggers>
                        <events:EventTrigger EventName="SelectionChanged">
                            <cmd:EventToCommand Command="{Binding OnMovieSelectedCommand}" PassEventArgsToCommand="True" />
                        </events:EventTrigger>
                    </events:Interaction.Triggers>
                </ComboBox>

Here is the code that handles the event:

OnMovieSelectedCommand = new RelayCommand<SelectionChangedEventArgs>(OnMovieSelected);

private void OnMovieSelectedCommand (SelectionChangedEventArgs args)
        {

            if (args.AddedItems.Count < 1) return;

            SelectedMovie = args.AddedItems[0] as Brand;

            if (SelectedMovie == null) return;

            var selectedMovies = MovieCache.MarketingCodes.Value
                   .Where(m => m.MovieId == SelectedMovie.Id)
                   .ToList();
            MarketingCodes = new ObservableCollection<MarketingCode>(selectedCodes);
            PriorityCodeValue = string.Empty;
        }

The issue is that the event will not trigger, regardless of what I try. What is the issue?

link|improve this question

68% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.