private void btn_accessApplication_Click(object sender, RoutedEventArgs e)
 {
     //dpDemarrage.Children.Clear();
     //dpDemarrage.Children.Add(new Accueil());
     CashProperties.openProperties();
     MessageBox.Show(CashProperties.fondCaisse + "");
 }
Exemplo n.º 2
0
        public AdministrationCaisseVM()
        {
            try
            {
                Label_administrationCaisse_fonCaisse = new float();

                CashProperties.openProperties();

                //ClasseGlobale.fondCaisse = new float();
                //ClasseGlobale.fondCaisse = 150;

                Label_administrationCaisse_fonCaisse = CashProperties.fondCaisse;
            }
            catch (Exception e)
            {
                MessageBox.Show("error:  " + e);
            }
        }