Ejemplo n.º 1
0
 private void pollServer()
 {
     //polling server at interval
     newNote = new Note(); //get from serverpoll
     meetingNotes.Add(newNote);
     if(normalPresentation)
         presentNote(newNote);
 }
Ejemplo n.º 2
0
 private void presentNote(Note newNote)
 {
     txtNote.Text = newNote.message;
 }
Ejemplo n.º 3
0
 public void AddNote(Note note)
 {
     this.notes.Add(note);
 }