Image Resources in WinForms
- by Power-Mosfet
I want to store images in a .dll file and use them for my winform application. but Im not able to load .dll content.
System.IO.Stream stream;
System.Reflection.Assembly assembly;
Image bitmap;
assembly = System.Reflection.Assembly.LoadFrom(Application.ExecutablePath);
stream =…