本地位图图像(windowsphone)

本文关键字:windowsphone 图像 位图 | 更新日期: 2023-09-27 18:29:14

我正在尝试传递<Image x:Name="FlagImage" Stretch="None" />的路径,但当我运行应用程序时,不会显示应用程序映像。

FlagImage.Source = new BitmapImage(new Uri("/images/sky.jpg"));

如果我将路径更改为URL,则图像将显示

FlagImage.Source = new BitmapImage(new Uri("http://www.charlespetzold.com/Media/HelloWP7.jpg"));

此代码也适用:

<Image Source="/images/sky.jpg"/>

本地位图图像(windowsphone)

您已经通过将位图图像的路径设置为relative来初始化它。。像这个

  FlagImage.Source = new BitmapImage(new Uri("/images/sky.jpg", UriKind.Relative));

希望它能帮助你。。

我理解。有必要添加UriKind.Relative

FlagImage.Source = new BitmapImage(new Uri("/images/sky.jpg", UriKind.Relative));