If you create an ImageList in the designer, i.e. add it to a form, then whatever images you add to it there will be embedded in your exe. You could then assign the ImageList to a global variable and access it from anywhere in the app. The alternative would be to add the image files to your project and set their Build Action property to Embedded Resource. You could then create Image objects at run time from the resources and add them to an ImageList.