WPF:访问 XAML 中的嵌入资源

发布于 2024-10-18 16:26:39 字数 416 浏览 1 评论 0原文

可能的重复:
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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

乙白 2024-10-25 16:26:39

像这样调用资源;

<Image Source="Resources/ProjNS.Image.logo.png" height="100" width="100"/>

Call the Resource like this;

<Image Source="Resources/ProjNS.Image.logo.png" height="100" width="100"/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文