简体   繁体   English

使用Windows Phone 8.1中的文件选择器选择的图像

[英]Work with image picked by File Picker in windows phone 8.1

I want to workk with an image picked by file picker in windows phone 8.1.I picked an image using this code 我想处理由Windows Phone 8.1中的文件选择器选择的图像。我使用此代码选择了图像

  private async void gallery_Tapped(object sender, TappedRoutedEventArgs e)
    {
        FileOpenPicker openPicker = new FileOpenPicker();
        openPicker.ViewMode = PickerViewMode.Thumbnail;
        openPicker.SuggestedStartLocation = PickerLocationId.PicturesLibrary;
        openPicker.FileTypeFilter.Add(".jpg");
        openPicker.FileTypeFilter.Add(".jpeg");
        openPicker.FileTypeFilter.Add(".png");

        // Launch file open picker and caller app is suspended and may be terminated if required
        openPicker.PickSingleFileAndContinue();
   }


 public async void ContinueFileOpenPicker(FileOpenPickerContinuationEventArgs args)
        {
            if (args.Files.Count > 0)
            {
                StorageFile file=args.Files[0];

                IRandomAccessStream fileStream = await                     file.OpenAsync(Windows.Storage.FileAccessMode.Read);
                BitmapImage bitmapImage = new BitmapImage();

                bitmapImage.SetSource(fileStream);
                MyImage.Source=bitmapImage;

  }
            else
            {

            }
}

ContinueFileOpenPicker not executing I tried this but unable to understand that.Can any here guide me step by step what should I do to make it work.Thanks ContinueFileOpenPicker没有执行,我试过了,但是无法理解。这里有什么可以逐步指导我如何使它工作的。谢谢

 protected override void OnActivated(IActivatedEventArgs args)
        {
            var root = Window.Current.Content as Frame;
            var mainPage = root.Content as MainPage;
            if (mainPage != null && args is FileOpenPickerContinuationEventArgs)
            {
                mainPage.ContinueFileOpenPicker(args as FileOpenPickerContinuationEventArgs);
            }
        }

Put this code in app.xaml.cs it will work.. 将此代码放在app.xaml.cs中,它将起作用。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM