Exemple #1
0
 public override void Propagate()
 {
     foreach (InsertionPanel ipanel in insertionsPanels)
     {
         ipanel.Propagate();
     }
     foreach (InsertionPanel tpanel in templatesPanels)
     {
         tpanel.Propagate();
     }
     TU.Build();
 }
Exemple #2
0
        public abstract void Populate();                                                                //TemplateUnit to insertion panels

        public virtual void Propagate()                                                                 //Fill TemplateUnit with insertion panels values
        {
            foreach (InsertionPanelBase ipanel in insertionPanels)
            {
                ipanel.Propagate();
            }
            foreach (InsertionPanelBase tpanel in templatePanels)
            {
                tpanel.Propagate();
            }
            TU.Build();
        }
Exemple #3
0
 public override void Propagate()
 {
     foreach (InsertionPanel ipanel in insertionsPanels)
     {
         ipanel.Propagate();
     }
     foreach (InsertionPanel tpanel in templatesPanels)
     {
         tpanel.Propagate();
     }
     TU.Build();
     bind.React(null);
     this.Close();
 }