I have made a user control and in it I've defined a dependency property like so:
public static readonly
DependencyProperty SourceProperty =
DependencyProperty.Register(
"Source",
typeof( ObservableCollection<object> ),
typeof( SingleLineChart ),
new PropertyMetadata(
default( ObservableCollection<object> ),
lineAffectedPropertyChanged ) );
I also have an ordinary property, which wrap the above one. In its setter I just call the SetValue( SourceProperty, value ); method.
When I set this Source from code-behind file the lineAffectedPropertyChanged invoked and executed, everything fine; but when I use a simple data-binding nothing happens.
<Line:SingleLineChart
Name="bestFitnessDisplayer"
Source="{Binding Path=bestFitnessHistory}"
Margin="20"/>
What do I miss?