Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    1. COIs that really the case? For example in WPF, I could do this <StackPanel DataContext="{Binding thePerson}" Orientation="Vertical"> <StackPanel Orientation="Horizontal"> <Label Content="Street"/> <TextBox Text={Binding Address.Street}/> </StackPanel> <StackPanel Orientation="Horizontal"> <Label Content="City"/> <TextBox Text={Binding Address.City}/> </StackPanel> </StackPanel> Here, (if I'm correct!), the binding infrastructure would make sure that the city and street textboxes are updated if either the Address property changes or the Street/City changes.
      singulars
    2. COSorry that xaml didn't come out too well in the comment. Anyway, what I'm trying to say is that it *could* be the requirement of the caller (the entity using the Person object) to register for change notifications on both the person object, and any nested property objects *which the caller uses*. I'm not saying that this is the case!... That's why I ask the original question because I believe it is possible for two designs (either push responsibility onto the user or onto the implementer). I've tried looking at MS documentation but haven't found anything definitive. Cheers!
      singulars
    3. COI am sorry, assumed that you are using Winfomrs. I don't have much knowledge of WPF, but, my guess is that in WPF too it will work exactly the same way. WPF does have concept of events that bubble up and you will probably have to utilize that fact. Look at this article, it should explain you to create custom routed events http://msdn.microsoft.com/en-us/library/ms742806.aspx
      singulars
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload