public void LoadNotes() { this.db = new NotesDatabase(); this.notes = db.FetchNotes(); foreach (NoteData x in this.notes) { this.note_windows.Append(new NoteWindow(x, background_window)); } }
public void LoadNotes() { this.db = new NotesDatabase(); this.notes = db.FetchNotes(); foreach(NoteData x in this.notes) { this.note_windows.Append(new NoteWindow(x,background_window)); } }