WPF:访问 XAML 中的嵌入资源
可能的重复:
WPF 图像资源
我的 VS C# 项目中有一些已声明的图像作为嵌入式资源。我使用以下方法在 .cs 文件中访问它们:
Stream logoStream = GetType().Assembly.GetManifestResourceStream("ProjNS.Image.logo.png");
Bitmap logo = new Bitmap(logoStream);
但是如何在 .xaml 文件中访问我的徽标?
Possible Duplicate:
WPF image resources
I have some images in my VS C# project that are declared as embedded resources. I'm accessing them in the .cs file using:
Stream logoStream = GetType().Assembly.GetManifestResourceStream("ProjNS.Image.logo.png");
Bitmap logo = new Bitmap(logoStream);
But how can I access my logo in the .xaml file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像这样调用资源;
Call the Resource like this;