Reputation: 1049
I have a wpf application. I want to show two images on two buttons , and i would like to take to another computer only the exe file without those images. What is the best way to do it?
thank you.
Upvotes: 3
Views: 4168
Reputation: 6637
You could add those images to the resources of the project, this way images become the part of the assembly. Have a look at Using Project Resources in WPF
Upvotes: 4