In Visual Studio's Designer, why don't any images show up in the Select Resource window?

c#, embedded-resource, resources, visual-studio-2010

Solution

You should probably click the `Import` button first, and than add the images. This will add them to the resource folder. You should do this from visual studio, not via the explorer

Problem

I got here by clicking on a `Button` on my `Form` in the designer, going to the Properties window, finding the Image property, and hitting the `...` button that appears to the right of the textbox. If I open up the Properties\Resources.resx file in the designer, I see all the images in my project, yet I cannot view them in this list. I suppose I could import the images I want from a directory, but then I would have duplicates. How can I select from images in the resource file from this dialog? How can I get them to appear? Thanks.

Original source