第 1 行的内存不足 Windows Phone 8 中的错误

本文关键字:错误 Phone 内存不足 Windows | 更新日期: 2023-09-27 18:35:48

我正在使用PhotoChooserTask从图库中选择照片。当我单击一个按钮以显示PhotoChooser任务库打开时。现在我回来了,没有从画廊中选择任何照片。在这里,我的应用程序崩溃了。这个问题有什么解决方案吗?请建议。

void photochooserTask_Completed(object sender, PhotoResult e)
{
    BitmapImage bi = new BitmapImage();
    if (e.Error == null && e.TaskResult == TaskResult.OK)
    {
        bi.SetSource(e.ChosenPhoto);
        Myimage.Source = bi;
    }
    else
    {
        MessageBox.Show("Failed to open an Image.");
    }
}

第 1 行的内存不足 Windows Phone 8 中的错误

试试这段代码,

void photoChooserTask_Completed(对象发送者,照片结果 e)        {            if (e.TaskResult == TaskResult.OK)            {                System.Windows.Media.Imaging.BitmapImage bmp = new System.Windows.Media.Imaging.BitmapImage();                .bmp。设置源(e.ChosenPhoto);                myImage.Source = bmp;            }        }