I've got problem triggering events in a control template which is in another control template and using MVVM light relay command.
Here is the case: main_control is templated in a generic.xaml style. sub_control is templated the same way.
main_control has several sub_control instance in an ObservableCollection
Now in my SL project implemented with MVVM Light I have a view with a main_control in the xaml. This view is binded to a viewmodel wihch fill it with sub_control.
What I am trying to achieve is to get back in the viewmodel the instance of a sub_control clicked.
Thanks for your help.