リソースの読み込み
プログラム中にリソースとして格納したフォルダとファイルの読み込み方法。 この場合の読み込みは、ロケールを自動判別は効かないので自分で、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#)
リソースの指定方法いろいろ
http://msdn.microsoft.com/ja-jp/library/windows/apps/xaml/hh965322.aspx
パフォーマンス
Metro スタイル アプリのパフォーマンスを改善する方法
http://blogs.msdn.com/b/windowsappdev_ja/archive/2012/04/10/metro.aspx
Performance tips for Metry style XAML apps
http://www.microsoft.com/en-us/download/details.aspx?id=29886
Popup
ポップアップが表示されているときに、他のボタンなどを押したら自動的にポップアップを消す場合は、以下のようにする。 またポップアップが表示されたときに Popup にフォーカスを移動させる場合も以下のようにしておく。
Popup.IsLightDismissEnabled = true;