using System.IO;
using System.Reflection;
Assembly asm = Assembly.GetExecutingAssembly();
Stream strm = asm.GetManifestResourceStream(asm.GetName().Name + ".abc.jpg ");
Bitmap bkImage = new Bitmap(strm);
pictureBox1.Image = bkImage;
1084

被折叠的 条评论
为什么被折叠?



