Advertisement
onzulin

metodo para rellenar la ListBoxTransaction

Oct 24th, 2012
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.58 KB | None | 0 0
  1. private async void LoadTransaction()
  2.         {
  3.             //este es el codigo para hacer la historia
  4.                 //this.ListBoxTransaction.Items.Clear();
  5.                 //transaction = await db.Table<Transacciones>().Where(Transacciones => Transacciones.IDCuenta == user.Id).FirstOrDefaultAsync();
  6.                 List<Transacciones> Transaccion = await db.Table<Transacciones>().ToListAsync();
  7.                 foreach (Transacciones transaccion in Transaccion)
  8.                 {
  9.                     this.ListBoxTransaction.Items.Add(transaccion);
  10.                 }
  11.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement