Exemplo n.º 1
0
        public void Analyser(out ListeLgProfil listeLgProfil)
        {
            InitTime();

            Init();

            AffichageElementWPF Fenetre = new AffichageElementWPF(ListeCorps);

            Fenetre.OnValider += ChargerCorps;
            Fenetre.ShowDialog();
            listeLgProfil = _listeLgProfil;
        }
Exemplo n.º 2
0
        private void ChargerCorps()
        {
            try
            {
                _listeElement = new ListeElement(LgBarre);

                foreach (var corps in ListeCorps.Values)
                {
                    if (corps.Dvp)
                    {
                        _listeElement.AjouterElement(corps.Qte * Quantite, corps.RepereComplet, corps.Materiau, corps.Dimension, corps.Volume.eToDouble(), 90, 90);
                    }
                }

                ExecuterEn();
                _listeLgProfil = _listeElement.ListeLgProfil;
            }
            catch (Exception e)
            {
                this.LogErreur(new Object[] { e });
            }
        }
Exemplo n.º 3
0
 public ListeBarre(ListeLgProfil listeLgProfil)
 {
     _ListeLgProfil = listeLgProfil;
 }
Exemplo n.º 4
0
 public ListeElement(Double lgBarre)
 {
     _LgProfils = new ListeLgProfil(lgBarre);
 }
Exemplo n.º 5
0
 public ListeElement(int lgBarre)
 {
     _LgProfils = new ListeLgProfil(lgBarre);
 }