Esempio n. 1
0
 private void TBFilter_KeyUp(object sender, KeyEventArgs e)
 {
     try
     {
         DGVEmployee.DataSource = employeeModel.Filter(TBFilter.Text);
     }
     catch (Exception Ex)
     {
         PBLog.Save(this, Ex);
     }
 }