예제 #1
0
        private void authorsToolStripMenuItem_Click(object sender, EventArgs e)
        {
            frmAuthorInfo frmAuthorInfo = new frmAuthorInfo();

            frmAuthorInfo.RefreshLits += new frmAuthorInfo.RefreshLitsHandler(LoadLiteratureList);
            frmAuthorInfo.Show();
        }
예제 #2
0
 private void openToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (lsbAuthor.SelectedItem != null)
     {
         if (G.glb.lstAuthor.Exists(o => o.Author == lsbAuthor.SelectedItem.ToString()))
         {
             frmAuthorInfo frmAuthorInfo = new frmAuthorInfo(lsbAuthor.SelectedItem.ToString());
             frmAuthorInfo.Show();
         }
     }
 }