public AppointmentPage()
        {
            InitializeComponent();

            if (db.DatabaseExists())
            {
                alist = new ApptObservable(db);

                this.apptListbox.ItemsSource = alist;
            }
        }
예제 #2
0
        public ProgressGoalPage()
        {
            InitializeComponent();

            if (db.DatabaseExists())
            {
                glist = new ObservableGoal(db);

                this.goalListbox.ItemsSource = glist;
            }
        }