我在Windows Phone 7.1上开发,无法找到System.Drawing,例如在此代码中
public static System.Drawing.Bitmap sfondo_panorama
{
get
{
object obj = ResourceManager.GetObject("sfondo_panorama", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
答案 0 :(得分:1)
我认为WP7中没有System.Drawing可用,但我不确定你要做什么,只是尝试System.Windows.Media
和System.Windows.Media.Imaging
。