コード例 #1
0
 public override void ViewDidLoad()
 {
     this.NavigationItem.Title = this.CategoryName;
     var source = new ProductTableViewSource();
     this.TableView.Source = source;
     source.LoadDataAsync(this.CategoryId, () => InvokeOnMainThread(() => this.TableView.ReloadData()));
 }
コード例 #2
0
        public override void ViewDidLoad()
        {
            this.NavigationItem.Title = this.CategoryName;
            var source = new ProductTableViewSource();

            this.TableView.Source = source;
            source.LoadDataAsync(this.CategoryId, () => InvokeOnMainThread(() => this.TableView.ReloadData()));
        }