从代码隐藏访问我的 wpf 应用程序 exe 中的图片

发布于 2024-10-16 19:02:28 字数 161 浏览 2 评论 0原文

我目前正在 XAML 中访问我的图像并将其设置为图片框,

Source="/SocialShock-WPF-Client;component/Images/blue-bar-replication.png"

我将如何在代码隐藏中执行此操作?

im currently accessing my image in XAML and setting it to a picturebox with

Source="/SocialShock-WPF-Client;component/Images/blue-bar-replication.png"

how would i do this in the codebehind?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

夜访吸血鬼 2024-10-23 19:02:28
    public static BitmapImage GetImageFromResource(string name)
    {
        var res = new BitmapImage();
        res.BeginInit();
        res.StreamSource = Assembly.GetExecutingAssembly().GetManifestResourceStream("SocialShock-WPF-Client.Images." + name);
        res.EndInit();

        return res;
    }

在您的情况下,使用图像名称“blue-bar-replication.png”调用此方法。
映像构建操作应设置为 EmbededResource。

    public static BitmapImage GetImageFromResource(string name)
    {
        var res = new BitmapImage();
        res.BeginInit();
        res.StreamSource = Assembly.GetExecutingAssembly().GetManifestResourceStream("SocialShock-WPF-Client.Images." + name);
        res.EndInit();

        return res;
    }

Invoke this method with the image name, "blue-bar-replication.png" in your case.
The image build action should be set to EmbededResource.

念﹏祤嫣 2024-10-23 19:02:28

完全一样的方式。创建 BitmapImage 对象(传递 Uri 对象与其 构造函数)。然后将 Image 的 Source 属性设置为新创建的 BitmapImage 对象。

Exactly the same way. Create BitmapImage object (pass Uri object with the same path to its constructor). Then set Image's Source property to the newly created BitmapImage object.

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