我想将图像加载到具有短路径名的 WPF 项目中。详情如下。
我有一个看起来像这样的 WPF 解决方案:
Solution 'GB" (16 projects)
ABApp
Properties
References
... ...
ImageApp
Properties
References
images
mona.jpg
App.xaml
App.xaml.cs
Window1.xaml
Window1.xaml.cs
我想看看这个ImageApp
项目。
该App.xaml
文件如下所示:
<Application x:Class="GB.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="Window1.xaml">
<Application.Resources>
</Application.Resources>
</Application>
并App.xaml.cs
简单地定义App
要从中派生的类Application
。
该Window1.xaml
文件构建了一个 UI,然后Window1.xaml.cs
构建了一个绘图区域,其中将显示各种图像内容。
在该 C# 文件中,为了加载images/mona.jpg
我想要显示的图像,我最终编写了如下内容:
Image myImage;
BitmapImage myBitmapImage = new BitmapImage();
myBitmapImage.BeginInit();
myBitmapImage.UriSource =
new Uri("../../images/mona.jpg", UriKind.RelativeOrAbsolute);
myBitmapImage.EndInit();
//set image source
FormatConvertedBitmap newFormatedBitmapSource = new FormatConvertedBitmap();
newFormatedBitmapSource.BeginInit();
newFormatedBitmapSource.Source = myBitmapImage;
newFormatedBitmapSource.DestinationFormat = PixelFormats.Bgra32;
newFormatedBitmapSource.EndInit();
bmpSource = newFormatedBitmapSource;
myImage.Source = bmpSource;
BuildRenderTransform();
(我为那个代码道歉——这是对实际情况的一种简化,所以它可能不是完美的字母。)
我的问题是关于 Uri 的:我必须在../../
Uri 的前面写,以便执行程序(以 结尾ImageApp/bin/Debug
)知道它必须上两层,然后下到images
文件夹中。有什么方法可以让我写一些类似的东西new Uri("images/mona.jpg", ...)
吗?我可以告诉 WPF 源目录应该用作相对搜索的起始路径吗?
我承认,尽管我已经阅读了微软的帮助文章和几个 StackExchange 问题/答案,但整个 Uri 事情对我来说大多是莫名其妙的。
我怀疑(和模糊的记忆)通过在项目的 xaml 中添加一些东西,我可以做到这一点,但我似乎无法做到。
有任何想法吗?