从 ResourceStream 获取图标
我有一个 Icon.ico,在属性中,构建操作是“资源”...
我想在应用程序中加载该图标..
我做了这样的事情:
Icon theIcon = new Icon(System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceStream("MyNameSpace.Icon.ico"));
这不起作用(它说“值” null'对于'stream'无效。”)
我能做什么?
I have a Icon.ico and in the Properties the Build Action is "Resource"...
I want to load that Icon in the Application..
I did something like this:
Icon theIcon = new Icon(System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceStream("MyNameSpace.Icon.ico"));
that didnt worked (it says "Value of 'null' is not valid for 'stream'.")
What can I do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用 Application.GetResourceStream 方法
更多来自 MSDN 的信息
try using Application.GetResourceStream method
more information from MSDN