Inheritance: IListItem
示例#1
0
 public void DeleteNote(Note note)
 {
     DeleteNote(ListBox.Items.IndexOf(note));
 }
示例#2
0
 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;
 }