public PropagatedChangeEventArgs( string propertyName, PropagatedChangeEventArgs parent = null )
 {
     if ( parent != null )
     {
         this.Path = string.Format( "{0}.{1}", propertyName, parent.Path );
     }
     else
     {
         this.Path = propertyName;
     }
 }
Example #2
0
 public PropagatedChangeEventArgs(string propertyName, PropagatedChangeEventArgs parent = null)
 {
     if (parent != null)
     {
         this.Path = string.Format("{0}.{1}", propertyName, parent.Path);
     }
     else
     {
         this.Path = propertyName;
     }
 }