また、表示したい Web ページのスクリーンショットを作成することもできます。しかし、ウェブページのスクリーンショットを作成するのも簡単ではありませんが、他のウェブサイトのスクリーンショットを撮るために作成された特別なサイトを使用して作成することをお勧めします。次に、このサイトが返す画像をダウンロードして開き、Windows 8 アプリで表示できます。私がそれを行う方法の例をいくつか示します。
StorageFolder screens = await Windows.ApplicationModel.Package.Current.InstalledLocation.CreateFolderAsync(@"Screens\" + folderName, CreationCollisionOption.GenerateUniqueName);
var downloader = new BackgroundDownloader();
IStorageFile file = await screens.CreateFileAsync(fname, CreationCollisionOption.GenerateUniqueName);
string my_uri = "http://api.snapito.com/web/e3c351d5994134eb1aea855ce78e296c3292d48a/lc/" + url + "?type=jpeg";
DownloadOperation download = downloader.CreateDownload(new System.Uri(my_uri), file);
await download.StartAsync();