我正在尝试在Silverlight中加载一个Image,但是当我将它分配给this.Image1.Source时,我一直得到一个空指针异常。我查看了类似的堆栈问题,但没有一个能解决问题。我的图像文件位于xap文件旁边的文件夹中。
public MainPage()
{
Uri uri = new Uri("Content/button.png", UriKind.Relative);
var image = new BitmapImage { UriSource = new Uri("Content/button.png", UriKind.Relative) };
try
{
BitmapImage img = new BitmapImage(uri);
this.image1.Source = image;
}
catch (Exception e)
{
string problem = e.Message;
}
InitializeComponent();
}
答案 0 :(得分:0)
好的,我发现了问题,我试图将图像分配给image1.Source,但还没有创建image1 - 它是在InitilizeComponent()函数中创建的。