Beispiel #1
0
 public ObservableCollection <string> Addbook()
 {
     foreach (var x in Elements)
     {
         if (x.Author == _nameOfAuthor)
         {
             AboutAuthors.Add(x.Book);
         }
     }
     return(AboutAuthors);
 }
Beispiel #2
0
        private void About_Click(object sender, EventArgs e)
        {
            AboutAuthors about = new AboutAuthors();

            about.ShowDialog();
        }