It's very easy to mark an image file to become an embedded resource however how does one access the image thereafter. Please can I have some example code?
|
|
Look at the third code snippet at http://msdn.microsoft.com/en-us/library/aa309403(VS.71).aspx |
||
|
|
|
|
The most direct method:
|
||
|
|
|
|
1) Adding and Editing Resources (Visual C#)
2) Accessing Embedded Resources using GetManifestResourceStream
|
||||
|
|
|
You can convert from bitmap from the stream. The Bitmap class has a method that does this. LoadFromStream if my memory serves. |
||
|
|
