0

我知道如何传递数据 NavigationService.Navigate(new Uri("/Second.xaml?msg=mesage", UriKind.Relative));

问题是,如何将从库中选择的图像传递到另一个页面?

要选择图像,我使用PhotoChooserTaskand 在它完成的情况下我有这个:

 private void photoChooserTask_Completed(object sender, PhotoResult e)
    {
        if (e.ChosenPhoto != null)
        {
            BitmapImage image = new BitmapImage();
            image.SetSource(e.ChosenPhoto);
            this.img.Source = image;
        }
    }

如何将选择的照片发送到另一个页面?我是否必须将其写入缓冲区、设置全局变量或将其“保存”在独立存储中?

4

2 回答 2

1
  1. 您可以先将图片保存在 IsolatedStorage 中,将文件路径作为字符串参数传递到另一个页面,在需要时将图片加载出来。

  2. 使用 PhoneApplicationService 将图像保存到 State 中,在需要时加载它。

保存到 IsolatedStorage 的示例:

public static void SaveStreamToStorage(Stream imgStream, string fileName)
        {
            using (IsolatedStorageFile iso_storage = IsolatedStorageFile.GetUserStoreForApplication())
            {
                //Structure the path you want for your file.
                string filePath = GetImageStorePathByFileName(fileName);

                //Constants.S_STORE_PATH is the path I want to store my picture.
                if (!iso_storage.DirectoryExists(Constants.S_STORE_PATH))
                {
                    iso_storage.CreateDirectory(Constants.S_STORE_PATH);
                }
                //I skip the process when I find the same file.
                if (iso_storage.FileExists(filePath))
                {
                    return;
                }

                try
                {
                    if (imgStream.Length > 0)
                    {
                        using (IsolatedStorageFileStream isostream = iso_storage.CreateFile(filePath))
                        {
                            BitmapImage bitmap = new BitmapImage();
                            bitmap.SetSource(imgStream);

                            WriteableBitmap wb = new WriteableBitmap(bitmap);

                            // Encode WriteableBitmap object to a JPEG stream. 
                            Extensions.SaveJpeg(wb, isostream, wb.PixelWidth, wb.PixelHeight, 0, 100);

                            isostream.Close();

                            bitmap.UriSource = null;
                            bitmap = null;
                            wb = null;
                        }
                    }
                }
                catch(Exception e)
                {
                    if (iso_storage.FileExists(filePath))
                        iso_storage.DeleteFile(filePath);

                    throw e;
                }
            }
        }

从 IsolatedStorage 读取图片的示例:

public static BitmapImage LoadImageFromIsolatedStorage(string imgName)
        {
            try
            {
                var bitmapImage = new BitmapImage();
                //bitmapImage.CreateOptions = BitmapCreateOptions.DelayCreation;
                using (var iso = IsolatedStorageFile.GetUserStoreForApplication())
                {
                    //Check if file exists to prevent exception when trying to access the file.
                    if (!iso.FileExists(GetImageStorePathByFileName(imgName)))
                    {
                        return null;
                    }
                    //Since I store my picture under a folder structure, I wrote a method GetImageStorePathByFileName(string fileName) to get the correct path.
                    using (var stream = iso.OpenFile(GetImageStorePathByFileName(imgName), FileMode.Open, FileAccess.Read))
                    {
                        bitmapImage.SetSource(stream);
                    }
                }
                //Return the picture as a bitmapImage
                return bitmapImage;
            }
            catch (Exception e)
            {
                // handle the exception 
                Debug.WriteLine(e.Message);
            }

            return null;
        }
于 2014-04-08T01:04:43.210 回答
0

您可以使用 app.xaml.cs 中定义的变量并从其他页面调用它(不要介意变量名称,只是我用于语言支持的代码示例):

private LanguageSingleton LanguageInstance
{
    get
    {
        return (App.Current as App).Language;
    }
}

以下是定义该变量的方法:

public LanguageSingleton Language { get; set; }

我确信有更多方法可以做到这一点,但这是一种解决方案。

于 2012-12-12T19:32:21.630 回答