Example #1
0
 public HNStorieDetailsPage()
 {
     this.InitializeComponent();
     comments            = new ObservableCollection <HNewsItemModel>();
     hnApiCli            = new HNApiClient();
     CommentsList.Source = comments;
 }
Example #2
0
 public MainPage()
 {
     this.InitializeComponent();
     hnApiCli        = new HNApiClient();
     news            = new ObservableCollection <HNewsItemModel>();
     NewsList.Source = news;
     tryLoadContent();
 }