Exemple #1
0
 /// <summary>
 /// Notifies the parent object (if any) that this
 /// child object's edits have been accepted.
 /// </summary>
 protected override void AcceptChangesComplete()
 {
     if (Parent != null)
     {
         Parent.ApplyEditChild(this);
     }
     base.AcceptChangesComplete();
 }