- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- winrt/tips へ行く。
- 1 (2012-07-04 (水) 10:37:17)
- 2 (2012-07-04 (水) 11:23:23)
- 3 (2012-07-05 (木) 10:13:33)
- 4 (2012-07-14 (土) 23:08:06)
- 5 (2012-08-30 (木) 11:29:43)
リソースの読み込み
プログラム中にリソースとして格納したフォルダとファイルの読み込み方法。 この場合の読み込みは、ロケールを自動判別は効かないので自分で、res/ja/ などとしてフォルダを読み込む必要あり。
root/Images/Image1.png root/Images/Image2.png root/Images/Image3.png root/Images/Image4.png var packageLocation = Windows.ApplicationModel.Package.Current.InstalledLocation; var imagesFolder = await packageLocation.GetFolderAsync("Images"); var image = await imagesFolder.GetFileAsync(“Image1.png”); // if you want the file as a stream (say to put into a Bitmap control var imageStreamRef = RandomAccessStreamReference.CreateFromFile(image);
Creating an IStorageFile out of a Local Resource in WinRT (C#)