0
我想從photoChooser獲得一個texture2d。 我得到了photoResult.ChosenPhoto流 我試過使用texture2d.fromStream,但graphicsDevice爲null。 我該怎麼辦? fyi - 我在optionmenuScreen的xna-wp7中做了這個,想在稍後的gamePlayScreen中使用它。 grephicsDevice構造函數初始化非常複雜,所以我認爲必須有一個更簡單的方法。 請幫忙! 感謝如何初始化GraphicsDevice?
{ if (result.TaskResult == TaskResult.OK) { bmp = new BitmapImage(); bmp.SetSource(result.ChosenPhoto);
photoRecieved =Texture2D.FromStream(graphicsDevice, result.ChosenPhoto);
}
}