예제 #1
0
 private void tbxAd_TextChanged(object sender, EventArgs e)
 {
     if (!String.IsNullOrEmpty(tbxAd.Text))
     {
         dgwInformations.DataSource = _informationService.GetELibraryInformationByELibraryInformationsName(tbxAd.Text);
     }
     else
     {
         LoadInformations();
     }
 }