[Solved] How to bind List to a DependencyProperty
The Binding in the UserControl’s XAML should have the UserControl instance as its source object, e.g. like this: <ListView ItemsSource=”{Binding MessageList, RelativeSource={RelativeSource AncestorType=UserControl}}” /> Alternatively you could set x:Name on the UserControl and use an ElementName binding: <UserControl … x:Name=”self”> … <ListView ItemsSource=”{Binding MessageList, ElementName=self}” /> … </UserControl> Besides that you should usually not set … Read more