C# WPF Load images from the exe folder(C# WPF 从 exe 文件夹加载图像)
问题描述
我想将我的程序从一台电脑移到另一台电脑,但问题是图像没有加载到任何其他电脑上(源问题).所以我想知道我是否可以创建一个放置 exe 的文件夹并将其命名为 Resources 并从那里加载每个图像.
image2.Source = new BitmapImage(new Uri(@"Resstartoh.png"));
您可以将图像作为资源添加到您的 Visual Studio 项目中.然后它们将被打包到可执行文件的程序集中,您无需单独复制它们.
在您的项目中创建一个文件夹(假设名为 Images)并将您的图像添加到该文件夹中.
确保图像的:
var uri = new Uri("pack://application:,,,/Images/SomeImage.png");image.Source = new BitmapImage(uri);
i want to move my program from a pc to another but the problem is the images are not loaded on any other pc (Source problem) . So i was wondering if i could just create a folder where the exe is placed and name it Resources and to load every image from there.
image2.Source = new BitmapImage(new Uri(@"Resstartoh.png"));
You may just add the images as resources to your Visual Studio project. Then they will be packed into the assembly of the executable and you don't need to copy them separately.
Create a folder in your project (let's say called Images) and add your images to that folder.
Make sure that the Build Action for the images is set to Resource
.
Now you can simply create a BitmapImage from such a resource by an appropriate Pack URI:
var uri = new Uri("pack://application:,,,/Images/SomeImage.png");
image.Source = new BitmapImage(uri);
这篇关于C# WPF 从 exe 文件夹加载图像的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:C# WPF 从 exe 文件夹加载图像


基础教程推荐
- Page.OnAppearing 中的 Xamarin.Forms Page.DisplayAlert 2022-01-01
- 当键值未知时反序列化 JSON 2022-01-01
- 创建属性设置器委托 2022-01-01
- 覆盖 Json.Net 中的默认原始类型处理 2022-01-01
- 从 VB6 迁移到 .NET/.NET Core 的最佳策略或工具 2022-01-01
- 如何使用OpenXML SDK将Excel转换为CSV? 2022-01-01
- 使用 SED 在 XML 标签之间提取值 2022-01-01
- C# - 将浮点数转换为整数...并根据余数更改整数 2022-01-01
- 我什么时候应该使用 GC.SuppressFinalize()? 2022-01-01
- C# - 如何列出发布到 ASPX 页面的变量名称和值 2022-01-01