I am working on a Silverlight 3 app with C#. I would like to allow the user to download an image from the Silverlight app. I am using SaveFileDialog to perform the file download task. The flow goes this way:

  1. User clicks on Download button in the SL app.
  2. Web service call invoked to get the image from server
  3. OnCompleted async event handler of the web method call get invoked and receives the binary image from the server
  4. Within the OnCompleted event handler, SaveFileDialog prompted to user for saving the image to computer.
  5. Stream the image to the file on user's harddrive.

I am using the following code in a function which is called from the OnCompleted event handler to accomplish SaveFileDialog prompt and then streaming to file.

            SaveFileDialog dialog = new SaveFileDialog();
            dialog.Filter = "JPG Files|*.jpg" + "|All Files|*.*";
            bool? dialogResult = dialog.ShowDialog();

            if (dialogResult == true)
            {
                using (Stream fs = (Stream)dialog.OpenFile())
                {
                    fs.Write(e.Result, 0, e.Result.Length);
                    fs.Close();
                }
            }

The SaveFileDialog would throw the error "Dialogs must be user-initiated." when invoking ShowDialog method in the above code. What could i be missing here? How to overcome this?

link|improve this question

feedback

6 Answers

up vote 9 down vote accepted

What this error message means is that you can only show a SaveFileDialog in response to a user initiated event, such as a button click. In the example you describe, you are not showing SaveFileDialog in response to a click, but rather in response to a completed http request (which is not considered a user initiated event). So, what you need to do to get this to work is, in the Completed event of the http request, show some UI to the user saying "download completed, click here to save the file to your computer", and when the user clicks on this message, display the SaveFileDialog.

link|improve this answer
7  
I got the same error message trying to use SaveFileDialog directly from a Button_Click event handler because I was doing some validation in the method before calling new SaveFileDialog(). JumpingJezza's link below shows a good example, but it appears that the key is to have new SaveFileDialog() as the first line in your button event handler. After that, you can seemingly do whatever else you like. – Jedidja May 16 '11 at 21:04
And "first" line really means first. I was debugging someone elses code and an out commented code block in a button click event handler caused the mentioned exception. – faester Feb 29 at 14:38
feedback

I accidentally discovered that the cause of the problem was a breakpoint on the line that was calling the ShowDialog method of the dialog!!!

When I removed the breakpoint the problem was gone!!!

link|improve this answer
feedback

How about asking first, before downloading? It seems to suggest from the error message that it is the way Silverlight wants you to prompt to ensure it knows a user requested the action, not you spaming the user with popups.

Silverlight security model aside, I'd rather not wait for a download to finish before being asked where to put it!

link|improve this answer
feedback

As Keith mentioned this is by design. This tutorial gives an excellent example using code which I used to download a file from the server in the "correct" way. (Works in Silverlight 4 too)

link|improve this answer
1  
You can also create the SaveFileDialog in the button event handler. The key is to make sure the constructor is the first line of the method. – Jedidja May 16 '11 at 21:05
feedback

I dont like the first solution, because whath if the file is large or exist an error in our service, othe option might be to set the dialog var as Class variable, in the user input instantiate the SAveFileDialog and in the completed handler use the reference to the dialog. Cheers!1

link|improve this answer
feedback

I just started on Silverlight 4 and had the same issue. It seems that if you manually create event handlers, the security exception is thrown, even if the event handler is handling a button click event with the correct parameters, but if you use the "create a new event handler" option on the button in Xaml under the click event, the new event handler, with the same code and parameters now works....this is one of the many "corky" things that I have come across since starting the transition from WPF to Silverlight.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.