在C#xaml.cs中从项目空间添加图像

时间:2010-10-21 15:24:05

标签: c# image xaml

这简直令人尴尬,但我今天的搜索没有运气。

我有一个image plane.png,我已将其作为现有项目添加到我的项目“Rem”中。我有map.xaml,但由于我想在此添加多个“plane.png”图像,我试图在map.xaml.cs中创建它们

执行我想要的XAML代码只是:<Image Source="plane.png"/>

某种善良的灵魂能告诉我C#的等价物是什么吗?

非常感谢,

中号

1 个答案:

答案 0 :(得分:0)

Image i = new Image();    
BitmapImage bi = new BitmapImage();
bi.BeginInit();
bi.UriSource = new Uri("plane.png", UriKind.Relative);
bi.EndInit();
i.Source = bi;