Example #1
0
 protected void PopulateListView()
 {
     client.GetAllAsync();
     client.GetAllCompleted += ListViewPopulatedCompleted;
 }
 private void LoginButtonOnClick(object sender, EventArgs eventArgs)
 {
     client.GetAllAsync();
     Toast.MakeText(this, "Successfully Logged!", ToastLength.Short).Show();
     Finish();
 }