Specify Binding of DependencyProperty in UserControl itself
问题 Following up on my previous question (Change brushes based on ViewModel property) In my UserControl I have have a DependencyObject . I want to bind that object to a property of my ViewModel . In this case a CarViewModel , property name is Status and returns an enum value. public partial class CarView : UserControl { public CarStatus Status { get { return (CarStatus)GetValue(CarStatusProperty); } set { SetValue(CarStatusProperty, value); } } public static readonly DependencyProperty