コード例 #1
0
        async partial void ButtonQuery_TouchUpInside(UIButton sender)
        {
            LabelResults.ResignFirstResponder();

            ProgressBar.StartAnimating();
            await helper.QueryBingImages(TextFieldSearch.Text);

            LabelResults.Text = "Search Results: " + helper.Images.Count;

            ImageCollection.ReloadData();

            ProgressBar.StopAnimating();
        }