Marcel
Marcel

Reputation: 75

wpf binding 2 properties of 2 classes

I have a XAML-object (window-control) having his own-properties in the code-behind (in my case it has a property called 'FirstEditableDate' without any UI-binding).

I also have another XAML-object (user-control) with a property (also without UI) and I want to bind the other property to this property.

So, if the property of the (main)class is changing, the other property of the usercontrol is also changing.

How can I do this?

(see for examples my 'answer' below...)

Upvotes: 0

Views: 571

Answers (1)

Viv
Viv

Reputation: 2595

You can implement the INotifyPropertyChanged interface on the Main class and have the usercontrol handle the PropertyChange event.

Upvotes: 1

Related Questions