コード例 #1
0
ファイル: MenuVilles.xaml.cs プロジェクト: gongwang/Ifroc-an
        public MenuVilles()
        {
            InitializeComponent();

            l = VilleORM.listeVilles();

            listeVilles.ItemsSource = l;
        }
コード例 #2
0
        private void OnPropertyChanged(string info)
        {
            PropertyChangedEventHandler handler = PropertyChanged;

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