资源文件的读取和使用
资源需要嵌入.resx中
using System.Reflection;
using System.Resources;
Assembly currentAssembly = Assembly.GetExecutingAssembly(); // 读取资源文件
string resourceRootName = "工程名.Properties.Resources";
ResourceManager resourcemanager = new ResourceManager(resourceRootName, currentAssembly);
// 使用图片资源
Bitmap 资源变量名 = (Bitmap)resourcemanager.GetObject("资源名");
// 播放音乐资源
System.Media.SoundPlayer simpleSound = newSystem.Media.SoundPlayer(Properties.Resources.music);
simpleSound.Play();
本文作者:清风行云
目前我开通了新博客,最新的内容和资讯都会第一时间在新博客发布,欢迎关注我的新博客 iFreeThinking.com !