I have a DataGrid (WPF Toolkit) with a custom combobox like edit template of a cell. This custom combo box have another datagrid like popup.
I have this problem:
In the window constructor I assign the event handler to the master datagrid with this statement
this.dgDoc.SelectionChanged += new SelectionChangedEventHandler(dgDoc_SelectionChanged);
the problem is that the function dgDoc_SelectionChanged fire also when I change selection on datagrid of combobox popup.
How can I avoid this behavior?