コード例 #1
0
 public void RestoreState()
 {
     // Restore Cached Apps
     StoreApps.Clear();
     _hasMoreItems = true;
     if (AppQueryParameters.AppType == AppType.Application)
     {
         TopApplications.ForEach(app => StoreApps.Add(app));
     }
     if (AppQueryParameters.AppType == AppType.Game)
     {
         TopGames.ForEach(app => StoreApps.Add(app));
     }
 }