Ejemplo n.º 1
0
 /// <summary>
 ///  Condition for printing when in compact mode.
 /// </summary>
 private bool PrintCondition(FamilyTreeNode ftn, bool includeNoFamily)
 {
     return(ftn != null && (includeNoFamily || ftn.HasAnyFamily));
 }
Ejemplo n.º 2
0
 public void CreateMotherNode(Person mother)
 {
     Mother = new FamilyTreeNode(mother);
 }
Ejemplo n.º 3
0
 public void CreateSpouseNode(Person spouse)
 {
     Spouse = new FamilyTreeNode(spouse);
 }
Ejemplo n.º 4
0
 public void CreateFatherNode(Person father)
 {
     Father = new FamilyTreeNode(father);
 }