我刚刚将.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上没有图像的原因是什么?
答案 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项目。