I've made two user controls A and B. Each of them has a TextBlock inside, and are places inside the root control (Page/RootVisual)
How do i bind the two "Text" properties, so that the text in B changes when the text in A changes(and not from B to A)
I cannot figure out the way to type this in XAML. What do i write as (x) in:
Text="{Binding ElementName=(x), Mode=OneWay, Path=Text}"
Said in another way: How do i reference an element property in a sibbling usercontrol?