コード例 #1
0
 private void BackgroundCustomImageLoadComplete(IDictionary <DeviceAssetImages, Image> images)
 {
     if (images != null)
     {
         this._backgroundImageAndColorSubset = this.ConstructBackgroundImageAndColorsSubset(images);
         this.End();
     }
     else
     {
         this._loader.LoadAndVerify(_assetSet.DefaultImageUris, _backgroundImagesToLoad, new ImageListLoaderAndVerifier.LoadAndVerificationCompletedHandler(this.BackgroundDefaultImageLoadComplete));
     }
 }
コード例 #2
0
 private void BackgroundDefaultImageLoadComplete(IDictionary <DeviceAssetImages, Image> images)
 {
     this._backgroundImageAndColorSubset = images == null ? new BackgroundImageAndColors(DefaultIconSet.Background, DefaultIconSet.Colors) : this.ConstructBackgroundImageAndColorsSubset(images);
     this.End();
 }