文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>资源文件的读取和使用

资源文件的读取和使用

时间:2011-04-23  来源:清风行云

资源需要嵌入.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();
相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载