public UcSaisieIndividuellePlus(CsSaisiHorsLot hlot, string centre, string client, string tourne, string produit, string periode, string lotri)
 {
     try
     {
         InitializeComponent();
         horslot      = hlot;
         lotriEncours = lotri;
         InitialiserInterface(horslot, centre, client, tourne, produit, periode, lotri);
         ChargerComboPoint(horslot.Compteurs);
         ChargeListeDesCas(null, null);
     }
     catch (Exception ex)
     {
         Message.ShowError(ex, Galatee.Silverlight.Resources.Langue.errorTitle);
     }
 }
 private void InitialiserInterface(CsSaisiHorsLot horslot, string centre, string client, string tourne, string produit, string periode, string lotri)
 {
     try
     {
         lbl_centre.Content    = centre;
         lbl_adresse.Content   = client;
         lbl_typecompt.Content = horslot.Compteurs.First().LIBELLETYPECOMPTEUR;
         lbl_tournee.Content   = tourne;
         txt_periode.Text      = periode;
         lbl_Produit.Content   = produit;
         this.Txt_DateEvt.Text = System.DateTime.Today.ToShortDateString();
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }