我见过几个像
的例子How to Set Image Resource URI from Code-Behind
但是没有理解。
如果我有以下解决方案
我想设置uri for ita.png
Stream iconStream = Application.GetResourceStream(new Uri(?????)).Stream;
notifyIcon.Icon = new System.Drawing.Icon(iconStream);
感谢
答案 0 :(得分:1)
您可以使用描述here
的包URI语法在你的情况下,它会是这样的:
Stream iconStream = Application.GetResourceStream(new Uri("pack://application:,,,/Resources/Images/ITA.png")).Stream;
notifyIcon.Icon = new System.Drawing.Icon(iconStream);