Esempio n. 1
0
 private void lstviewAllNotes_Click(object sender, EventArgs e)
 {
     string selected = lstviewAllNotes.SelectedItems[0].SubItems[0].Text;
     Note note = new Note();
     note.name = selected;
     note.notecontent();
     rtxtNote.Text = note.note;
     txtName.Text = note.unclean(note.name);
 }