从Windows Phone 7.1到Windows Phone 8.0

时间:2015-08-18 19:48:06

标签: windows-phone

我刚刚将.cs代码复制到新的Windows Phone 8.0应用程序中。没有错误代码或其他东西。

我在应用程序中设置的所有图像都是.cs而不是.xaml。

当我调试profject时,没有图像。整个图像都是建设性的。所有都在Canvas中。 E.G

       Image bankImage = new Image()
                {
                    Source = new BitmapImage(new Uri("/PhoneApp2;component/images/Menu/cash.png", UriKind.Relative)),
                    Height = 80,
                    Width = 250
                };
 Canvas.SetTop(bankImage, 140);
            Canvas.SetLeft(bankImage, 170);
MyCanvas.Children.Add(bankImage);

我的应用程序在WP8和WP7上没有图像的原因是什么?

2 个答案:

答案 0 :(得分:1)

解决

图像属性构建操作必须是"内容"。如果有意见,我必须得到像

这样的来源
ImageSource = (ImageSource)new BitmapImage(new Uri("/images/AmericanPoker/Bottom.png", UriKind.Relative))

无需使用App;组件

答案 1 :(得分:0)

不要将.cs文件复制到新的WP8项目中。 只需在较新版本的Visual Studio(2012或2013)中打开旧的WP7项目 - 它将成为WP8项目。