GetTopGames() public static method

public static GetTopGames ( ) : IEnumerable
return IEnumerable
コード例 #1
0
ファイル: HistoryPage.xaml.cs プロジェクト: war-man/Demo-EF7
 protected override void OnNavigatedTo(NavigationEventArgs e)
 {
     this.GameList.ItemsSource = GameService.GetTopGames();
 }
コード例 #2
0
 private void ReloadHistory()
 {
     this.GameList.ItemsSource = GameService.GetTopGames();
 }