I am quite new to the WPF....I ran into this issue where it says "The dropdownclosed is not a routedevent". here is my code:
<DataGridComboBoxColumn x:Name="Fleet_Combo" Header="Fleet" Width = "30*" ItemsSource="{Binding acTypeFleet}" SelectedItemBinding="{Binding Fleet,Mode=TwoWay}">
<DataGridComboBoxColumn.EditingElementStyle>
<Style TargetType="ComboBox">
<EventSetter Event="SelectionChanged" Handler="FleetComboBox_SelectionChanged"/>
<EventSetter Event="DropDownClosed" Handler="ComboBox_DropDownClosed"/>
</Style>
</DataGridComboBoxColumn.EditingElementStyle>
</DataGridComboBoxColumn>
Please help, thank you.