Click here to Skip to main content
15,886,017 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
hi all

i want set image to some button in my project ...

and i want they are stay after publishing setup file ...

what is a best solution :

1-use project resurces file
2-local resurce ?


please help me ...

thanks a lot
Posted

There is no "best" - they do different things.

But in your case, with a button image I normally put the images into the project resource file, and set it's property "Build Action" to "Embedded Resource" This ensures that it becomes a integral part of the EXE file and can't be accidentally moved or deleted.
 
Share this answer
 
I don't understand what do you options 1-2 mean. In most cases, it would be a *.resx file included in your project. Just one advice: don't embed the image, use "Add existing file". This way, the image file will be added to both project (without copying it to output directory) and referenced in the resource file. In such settings, you will be able to edit the file separately, with any editor of your choice.

In WPF, you can use this option we well (will need to convert the image to the WPF bitmap, which is a disadvantage, please see this CodeProject article: Bitmap to BitmapSource[^]), or you can use XAML resources, which is a way native to WPF. Please see:
http://msdn.microsoft.com/en-us/library/ms742538.aspx[^].

—SA
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900