2015-10-07 16:22:06 +08:00
|
|
|
|
using BuildFeedApp.Service;
|
|
|
|
|
using System;
|
2015-10-07 14:30:53 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Runtime.InteropServices.WindowsRuntime;
|
2015-10-07 16:22:06 +08:00
|
|
|
|
using System.Threading.Tasks;
|
2015-10-07 14:30:53 +08:00
|
|
|
|
using Windows.Foundation;
|
|
|
|
|
using Windows.Foundation.Collections;
|
|
|
|
|
using Windows.UI.Xaml;
|
|
|
|
|
using Windows.UI.Xaml.Controls;
|
|
|
|
|
using Windows.UI.Xaml.Controls.Primitives;
|
|
|
|
|
using Windows.UI.Xaml.Data;
|
|
|
|
|
using Windows.UI.Xaml.Input;
|
|
|
|
|
using Windows.UI.Xaml.Media;
|
|
|
|
|
using Windows.UI.Xaml.Navigation;
|
|
|
|
|
|
|
|
|
|
// The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=402352&clcid=0x409
|
|
|
|
|
|
2015-10-07 16:22:06 +08:00
|
|
|
|
namespace BuildFeedApp
|
2015-10-07 14:30:53 +08:00
|
|
|
|
{
|
2015-10-07 16:22:06 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// An empty page that can be used on its own or navigated to within a Frame.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public sealed partial class MainPage : Page
|
|
|
|
|
{
|
|
|
|
|
public MainPage()
|
|
|
|
|
{
|
|
|
|
|
this.InitializeComponent();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private async void Page_Loaded(object sender, RoutedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
lvContent.ItemsSource = await ApiCache.GetApi<Build[]>("http://vnext.buildfeed.net/api");
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-10-07 14:30:53 +08:00
|
|
|
|
}
|