动态获取Resources里面的图片列表
假设Resources里面资源文件都是图片:
//从资源文件查找,并释放到目录下 Resources res = new Resources(); foreach (PropertyInfo item in res.GetType().GetProperties(BindingFlags.Static | BindingFlags.NonPublic | BindingFlags.Instance)) { if (item.Name != "Culture" && item.Name != "ResourceManager") { if (item.GetValue(res, null) is Bitmap) { Bitmap b = item.GetValue(res, null) as Bitmap; if (!Directory.Exists(Path.Combine(Application.StartupPath, this.ImagePath))) Directory.CreateDirectory(Path.Combine(Application.StartupPath, this.ImagePath)); b.Save(Path.Combine(Application.StartupPath, this.ImagePath + item.Name + ".gif"), System.Drawing.Imaging.ImageFormat.Gif); } } }
博客地址 | http://www.cnblogs.com/guyun/ |
博客版权 | 本文以学习、研究和分享为主,欢迎转载,但必须在文章页面明显位置给出原文连接。 如果文中有不妥或者错误的地方还望高手的你指出,以免误人子弟。如果觉得本文对你有所帮助不如【推荐】一下!如果你有更好的建议,不如留言一起讨论,共同进步! 再次感谢您耐心的读完本篇文章。 |
给我打赏 |