Assembly asm = Assembly.GetExecutingAssembly();
//MessageBox.Show(asm.GetName().Name);
//foreach (string name in asm.GetManifestResourceNames())
//MessageBox.Show(name);
Bitmap bitmap = new Bitmap(asm.GetManifestResourceStream("winform.image.jpg"));
pictureBox1.Image = bitmap;