示例#1
0
 private void addPublicationBtn_Click(object sender, RoutedEventArgs e)
 {
     var dlg = new AddPublicationWindow(ref _db);
     dlg.ShowDialog();
     if (dlg.isClosedWithSave)
     {
         publicationSearchBox.Text = String.Empty;
         showPublicationList();
     }
 }
示例#2
0
        private void addPublicationBtn_Click(object sender, RoutedEventArgs e)
        {
            var dlg = new AddPublicationWindow(ref _db);

            dlg.ShowDialog();
            if (dlg.isClosedWithSave)
            {
                publicationSearchBox.Text = String.Empty;
                showPublicationList();
            }
        }