如何通过代码访问“Background.png”图像?

时间:2011-10-26 13:58:59

标签: c# windows-phone-7 isolatedstorage

我有全景项目附带的标准图片“background.png”,我正在尝试访问它。我尝试使用此代码,但未检测到图像:

using (var store = IsolatedStorageFile.GetUserStoreForApplication())
{
    if (store.FileExists("Background.png"))
    {
        Debug.WriteLine("found");
    }
    else Debug.WriteLine("not found");
}

图像位于何处?

真正的问题是我通过“添加>现有项目>”向项目添加文件并希望得到它真正的道路。

1 个答案:

答案 0 :(得分:0)

项目内的图片未存储在IsolatedStorage中。

var image = new Image
                              {
                                  Height = 29,
                                  Width = 30,
                                  Source =
                                      new BitmapImage(
                                      new Uri(@"background.png",
                                              UriKind.RelativeOrAbsolute))
};