public void DeleteNote(Note note) { DeleteNote(ListBox.Items.IndexOf(note)); }
public void AddNote(string name, string text, string file) { var note = new Note(name, text, file); notes.Add(note); ListBox.Items.Add(note); if (ListBox.SelectedIndex < 0) ListBox.SelectedIndex = 0; }