vote up 0 vote down star

I am using an icon in my application in two situations.

  1. In XAML as an Image for the Button using DynamicResource.
  2. In C# as NotifyIcon

    this.notifyIcon.Icon = new SystemDrawing.Icon("..//..//Shutdown.ico" );

My problem is if I delete the image the application not working. How can I bind the image with the exe file so that the application can run only with the exe file?

flag

2 Answers

vote up 1 vote down check

Add the icon to the project as a Resource (not Embedded Resource, there is a difference), then access it with

using(Stream stream = Application.GetResourceStream(new Uri("/Shutdown.ico")).Stream)
{
    this.notifyIcon.Icon = new SystemDrawing.Icon(stream);
}

You should also then be able to use it in your XAML too, I just can't remember how yet.

See here for more information: http://msdn.microsoft.com/en-us/library/aa970494.aspx

Note: I have not included any error checking here. You should probably make sure you check the stream to see if it is null before using it.

link|flag
When I use I got an error Error 1 Cannot implicitly convert type 'System.Windows.Resources.StreamResourceInfo' to 'System.IO.Stream' – Ortus Mallum Jun 15 at 3:36
1  
I missed the .Stream call on the end of the GetResourceStream() call. Did you look at StreamResourceInfo to see where I went wrong? You aren't going to get anywhere just copy pasting code without figuring out how it works. – Jamie Penney Jun 15 at 10:21
vote up 0 vote down

The last time I needed to do this, the image was so simple that it was easiest to simply create a line drawing in XAML (similar to SVG) instead of using a file. I was attempting to build a simple Vista-style wizard without reusing anyone else's code (to see if I could), and I wanted the arrow of a command button as can be seen in the UX guidelines on MSDN.

link|flag

Your Answer

Get an OpenID
or

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