如何在UriKind.Relative Path中返回一个文件夹?

时间:2011-12-28 20:03:22

标签: wpf path uri relative

我有这段代码:

imgImage.Source = new BitmapImage(new Uri("Images/LivingRoom/chair.png", UriKind.Relative));

这给了我:

{包://应用:,,, / ExpressFurnitureSystem;组件/ UI /图像/客厅/ chair.png}

这里我想删除(ui)或者去一个文件夹。我的要求是:

{包://应用:,,, / ExpressFurnitureSystem;组件/图像/客厅/ chair.png}

因为我的图像文件夹下的所有图像文件都不在UI / Image下。

提前感谢您的帮助。

2 个答案:

答案 0 :(得分:5)

您是否尝试过以下操作? (即在开头添加../)

imgImage.Source = new BitmapImage(new Uri("../Images/LivingRoom/chair.png", UriKind.Relative)); 

我不确定是否会这样做,但通常两个时段允许你向上移动一级。

答案 1 :(得分:2)

使用../Images/LivingRoom/chair.png