Ejemplo n.º 1
0
        public MenuVilles()
        {
            InitializeComponent();

            l = VilleORM.listeVilles();

            listeVilles.ItemsSource = l;
        }
Ejemplo n.º 2
0
        private void OnPropertyChanged(string info)
        {
            PropertyChangedEventHandler handler = PropertyChanged;

            if (handler != null)
            {
                handler(this, new PropertyChangedEventArgs(info));
                VilleORM.updateVille(this);
            }
        }