酢ろぐ!

カレーが嫌いなスマートフォンアプリプログラマのブログ。

2011-04-28から1日間の記事一覧

アプリ内のResourceをBitmapImageへ読み込む

var strmInfo = Application.GetResourceStream(new Uri("/Softbuild.OppaiIppai;component/Images/sample3.jpg", UriKind.Relative)); if (strmInfo == null) { // エラー処理 return; } var bitmap = new System.Windows.Media.Imaging.BitmapImage(); bit…