本文介绍了从ResourceStream获取图标的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个Icon.ico,在属性中,构建操作是资源...
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"));
没有用(它表示'null'的值对'stream'无效'。)
我该怎么办?
推荐答案
尝试使用
这篇关于从ResourceStream获取图标的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!