When I added the SelectionChanged event and of course the method in the code to handle the event to the following combobox:
....
Put OrderBox.SelectionChanged+=OrderBox_OnSelectionChanged; in the MainWindow constructor and remove the SelectionChanged attribute in your xaml.
OrderBox.SelectionChanged+=OrderBox_OnSelectionChanged;
MainWindow
SelectionChanged