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); }
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(); } }
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(); */ } }
public void RemoveSelectedWod() { Wodliste.Remove(SelectedWod); }
//public RelayCommand AddWodCommand { get; set; } public void AddNewWod() { Wodliste.Add(NewWod); }