0

我想将图像加载到具有短路径名的 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 中添加一些东西,我可以做到这一点,但我似乎无法做到。

有任何想法吗?

4

1 回答 1

1

我不确定(现在无法检查),但请尝试指定类似这样的内容

new Uri("/ImageApp;component/images/mona.jpg");

并确保您在引用中有 ImageApp

于 2014-03-13T22:28:09.987 回答