Пример #1
0
        public void AddNewWod()
        {
            var tempWod = new Model.Wod();

            tempWod.WodName     = NewWod.WodName;
            tempWod.Description = NewWod.Description;
            tempWod.Movement1   = NewWod.Movement1;
            tempWod.Movement2   = NewWod.Movement2;
            Wodliste.Add(tempWod);
        }
Пример #2
0
        public async void HentdataFraDiskAsync()
        {
            try
            {
                StorageFile file = await localfolder.GetFileAsync(filnavn);

                string jsonText = await FileIO.ReadTextAsync(file);

                this.Wodliste.Clear();
                Wodliste.IndsætJson(jsonText);
            }
            catch
            {
                MessageDialog messageDialog = new MessageDialog("Ændret filnavn eller du har ikke gemt ?", "Filnavn");
                await messageDialog.ShowAsync();
            }
        }
Пример #3
0
        public async void HentDataFraDiskAsync()
        {
            // this.Wodliste.Clear();
            try
            {
                StorageFile file = await localfolder.GetFileAsync(filnavn);

                string jsonText = await FileIO.ReadTextAsync(file);

                this.Wodliste.Clear();
                Wodliste.IndsetJson(jsonText);
            }
            catch (Exception)
            {
                /*  MessageDialog messageDialog = new MessageDialog("Ændret filnavn eller har du ikke gemt ?", "Filnavn");
                 * await messageDialog.ShowAsync(); */
            }
        }
Пример #4
0
 public void RemoveSelectedWod()
 {
     Wodliste.Remove(SelectedWod);
 }
Пример #5
0
        //public RelayCommand AddWodCommand { get; set; }

        public void AddNewWod()
        {
            Wodliste.Add(NewWod);
        }