使用Photochooser Task必须加载图像并立即传递到另一页。但是在实现以下代码时显示为空白:
private void LoadPicture_Click(object sender, RoutedEventArgs e)
{
PhotoChooserTask photoChooserTask;
photoChooserTask = new PhotoChooserTask();
photoChooserTask.Completed += new EventHandler<PhotoResult>(photoChooserTask_Completed);
photoChooserTask.Show();
NavigationService.Navigate(new Uri("/Page1.xaml", UriKind.Relative));
}
void photoChooserTask_Completed(object sender, PhotoResult e)
{
if (e.TaskResult == TaskResult.OK)
{
System.Windows.Media.Imaging.BitmapImage bmp = new System.Windows.Media.Imaging.BitmapImage();
bmp.SetSource(e.ChosenPhoto);
Page1 p1 = new Page1();
p1.encodeImg.Source = bmp;
}
else
{
MessageBox.Show("Image Loading Failed.");
}
}
请在修复上述问题时提出建议。
谢谢!
答案 0 :(得分:1)
你解决了吗?如果你还没有,你可以使用这样的东西。在你的photoChooseTask处理程序中保存bitmapImage
PhoneApplicationService.Current.State["yourparam"] = bmp;
然后在你的Page1中得到bitmapImage
BitmapImage bitmapGet = PhoneApplicationService.Current.State["yourparam"] as BitmapImage;
这是你应该如何使用它。
void photoChooserTask_Completed(object sender, PhotoResult e)
{
if (e.TaskResult == TaskResult.OK)
{
System.Windows.Media.Imaging.BitmapImage bmp = new System.Windows.Media.Imaging.BitmapImage();
bmp.SetSource(e.ChosenPhoto);
//save the bitmapImage
PhoneApplicationService.Current.State["yourparam"] = bmp;
}
else
{
MessageBox.Show("Image Loading Failed.");
}
NavigationService.Navigate(new Uri("/Page1.xaml", UriKind.Relative));
}
你的Page1
protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e)
{
//get the bitmapImage
BitmapImage bitmapGet = PhoneApplicationService.Current.State["yourparam"] as BitmapImage;
//set the bitmpaImage
img.Source = bitmapGet;
base.OnNavigatedTo(e);
}
答案 1 :(得分:0)
必须在完成事件后完成导航,photochooser.show()会抑制主应用程序线程,因此您只能在获得图像流后传递它。因此,将导航语句转换为已完成的事件处理程序,并使用isolatedstoragesettings.applicationsettings存储图像并将其返回到第二页。
答案 2 :(得分:0)
实现它的另一种方法是先将图像保存在isolateStorage中,然后将文件路径作为字符串参数传递给page1。
page1然后可以随时加载图像。