如何从代码隐藏中设置URI

时间:2015-12-15 10:19:01

标签: c# wpf uri

我见过几个像

的例子

How to Set Image Resource URI from Code-Behind

但是没有理解。

如果我有以下解决方案

enter image description here

enter image description here

我想设置uri for ita.png

 Stream iconStream = Application.GetResourceStream(new Uri(?????)).Stream;
  notifyIcon.Icon = new System.Drawing.Icon(iconStream);

感谢

1 个答案:

答案 0 :(得分:1)

您可以使用描述here

的包URI语法

在你的情况下,它会是这样的:

  Stream iconStream = Application.GetResourceStream(new Uri("pack://application:,,,/Resources/Images/ITA.png")).Stream;
  notifyIcon.Icon = new System.Drawing.Icon(iconStream);