private void Buscar()
 {
     try
     {
         DgvListado.DataSource = NegocioEvents.Buscar(TBstartsearch.Text);
         this.Formato();
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message + ex.StackTrace);
     }
 }