我正在尝试在 Windows Phone 7 应用程序中加载 BMP 图像,但扩展名是。bmp 图像没有出现。但是,该代码适用于 .jpg、.png 和 .gif。我正在使用以下代码片段:
Uri uri = new Uri("Images/test.bmp", UriKind.Relative);
ImageSource img = new System.Windows.Media.Imaging.BitmapImage(uri);
imageView.Source = img;
谢谢