1

我做了一个可以拍摄照片的应用程序,保存照片后,它会转到另一个页面,比如说page1.xaml,但我得到一个错误:|

错误是An unhandled exception of type 'System.UnauthorizedAccessException' occurred in System.Windows.ni.dll,消息说Invalid cross-thread access.那是什么?我是开发 WP 应用程序的新手。

这是我的代码

void cam_CaptureImageAvailable(object sender, Microsoft.Devices.ContentReadyEventArgs e)
    {
        string fileName = savedCounter + ".jpg";

        try
        {   // Write message to the UI thread.
            Deployment.Current.Dispatcher.BeginInvoke(delegate()
            {
                txtDebug.Text = "Captured image available, saving picture.";
            });

            // Save picture to the library camera roll.
            library.SavePictureToCameraRoll(fileName, e.ImageStream);

            // Write message to the UI thread.
            Deployment.Current.Dispatcher.BeginInvoke(delegate()
            {
                txtDebug.Text = "Picture has been saved to camera roll.";

            });

            // Set the position of the stream back to start
            e.ImageStream.Seek(0, SeekOrigin.Begin);

            // Save picture as JPEG to isolated storage.
            using (IsolatedStorageFile isStore = IsolatedStorageFile.GetUserStoreForApplication())
            {
                using (IsolatedStorageFileStream targetStream = isStore.OpenFile(fileName, FileMode.Create, FileAccess.Write))
                {
                    // Initialize the buffer for 4KB disk pages.
                    byte[] readBuffer = new byte[4096];
                    int bytesRead = -1;

                    // Copy the image to isolated storage. 
                    while ((bytesRead = e.ImageStream.Read(readBuffer, 0, readBuffer.Length)) > 0)
                    {
                        targetStream.Write(readBuffer, 0, bytesRead);
                    }
                }
            }

            // Write message to the UI thread.
            Deployment.Current.Dispatcher.BeginInvoke(delegate()
            {
                txtDebug.Text = "Picture has been saved to isolated storage.";

            });
        }
        finally
        {
            // Close image stream
            e.ImageStream.Close();

            GoTo();
        }
    }


private void GoTo()
{
     this.NavigationService.Navigate(new Uri("/page1.xaml", Urikind.Relative));
}
4

1 回答 1

4

您正在GoTo从后台线程调用该方法。导航时,需要在前台线程上进行。

private void GoTo()
{
    Dispatcher.BeginInvoke(() =>
    {
        this.NavigationService.Navigate(new Uri("/page1.xaml", Urikind.Relative));
    });
}
于 2013-03-10T17:30:04.047 回答