Skip to content

Instantly share code, notes, and snippets.

@angelobelchior
Created April 7, 2015 03:03
Show Gist options
  • Save angelobelchior/ca1ad0a993306fc5ce8f to your computer and use it in GitHub Desktop.
Save angelobelchior/ca1ad0a993306fc5ce8f to your computer and use it in GitHub Desktop.
public override void ViewDidLoad ()
{
base.ViewDidLoad ();
btnSearch.TouchUpInside += async (object sender, EventArgs e) => {
var github = new Shared.GitHubApi();
var repositories = await github.GetAsync(txtUser.Text);
lvwRepositories.Source = new TableViewSource(repositories);
lvwRepositories.ReloadData();
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment