Beispiel #1
0
 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));
     }
 }
Beispiel #2
0
	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));
		}

	}