Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7169047
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T14:54:20+00:00 2026-05-28T14:54:20+00:00

I have an application with only one button. When user clicks the button, a

  • 0

I have an application with only one button. When user clicks the button, a photo chooser should be launched.

The following is my code

PhotoChooserTask photoChooserTask;
BitmapImage image;

Page_Launch event
{
      this.photoChooserTask = new PhotoChooserTask();
      this.photoChooserTask.ShowCamera = true;
      this.photoChooserTask.PixelHeight = 100;
      this.photoChooserTask.PixelWidth = 100;
      this.photoChooserTask.Completed += new EventHandler<PhotoResult>(photoChooserTask_Completed);
}

button_click event
{
    this.photoChooserTask.Show();
}

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

Everything is fine when I start debuging on WP emulator. I can choose a photo from photo library or capture one, crop and save the photo. But when I run debuging on my WP device, I always get e.ChosenPhoto ArgumentNullException error after clicking the button.

Has anyone got same issue?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T14:54:22+00:00Added an answer on May 28, 2026 at 2:54 pm

    Are you writing this code in the Application launch event ??

    Did you tried by adding the photochoosertask in a page.

    try this pasting in to the MyPage.xaml.cs file

     public partial class MainPage : PhoneApplicationPage
        {
            PhotoChooserTask photoChooserTask;
            BitmapImage image;
    
            // Constructor
            public MainPage()
            {
                InitializeComponent();
                this.photoChooserTask = new PhotoChooserTask();
                this.photoChooserTask.ShowCamera = true;
                this.photoChooserTask.PixelHeight = 100;
                this.photoChooserTask.PixelWidth = 100;
                this.photoChooserTask.Completed += new EventHandler<PhotoResult>(photoChooserTask_Completed);
            }
    
            private void button1_Click(object sender, RoutedEventArgs e)
            {
                this.photoChooserTask.Show();
            }
    
            private void photoChooserTask_Completed(object sender, PhotoResult e)
            {
               if (e.TaskResult == TaskResult.OK && e.ChosenPhoto != null)
                {
                    this.image = new BitmapImage();
                    this.image.SetSource(e.ChosenPhoto);
                }
            }
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an application which may only have one instance of itself open at
I have a UINavigationBar based application - only a one navigation bar that is
I need to make so that my application can have only one instance running
i want to control home button in android for my application only...actually i have
I am building an application using Delphi 7. I have added one button on
I have an application running only on Windows and a batch file that launches
If I have an application with only a few event handlers registered (and the
I have a wordpress application thats currently the only application on the domain. Now
I have an application that seems to throw exceptions only after the program has
Suppose I have a GUI-only application that runs on Windows and I'd like to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.