Here is a hint when using WPF and you may come into a situation where you want to databind an element to its Parent ViewModel.

ViewModel

As an example lets say you have a view that is binding to ViewModel and inside your xaml you have a control that has DataTemplate
The code Below we are using the BusyIndicator from https://wpftoolkit.codeplex.com/

Our ViewModel looks like

We would assume that the property would bind, but actually it doesn’t since the datatemplate is there.

So what we need to do is bind it to its parent viewmodel

What we need to provide is RelativeSource and the AncestorType, below we are using UserControl but it could also be Window or a provided type like AncestorType={x:Type XYZObject}