标签: c# .net resources
我使用VS 2008和C#,我想在资源中嵌入游标文件(x.cur),包含在EXE中,我想调用它。
有任何建议吗?
答案 0 :(得分:1)
Add the file to your application resources并使用类似的内容加载它:
Add the file to your application resources
var cursor = new Cursor(System.Reflection.Assembly.GetEntryAssembly().GetManifestResourceStream("x.cur"));