Setup project in c# windows application cant load image?

772 Views Asked by At

![enter image description here][1]i have a windows application in C# with a setup project !!! I used Image.FromFile("filename") in my application but when make a setup project from it , and run it , it dose not show my pictures ! why ?

try
            {
                string timeOfDay = Convert.ToInt32(DateTime.Now.TimeOfDay.ToString().Substring(3, 2)).ToString();
                this.BackgroundImage = Image.FromFile("BackGround\\Flowers (" + timeOfDay + ").jpg");
            }
            catch (Exception ex)
            {
                this.BackgroundImage = Image.FromFile("\\BackGround\\Flowers (59).jpg");

            }
1

There are 1 best solutions below

3
On

First you have to add the Image file to your Visual Studio project unless you do this image can not be embedded into the output assembly.

Project Folder > Images

First add a custom folder and move your image to that folder and add the same folder to your VS project. now go to Image property and set the Build Action as "Resource".