0

我已经尝试过了,但我没有得到答案。我有 3 个图像框。在这 2 个图像框中有图像,而 1 个图像框是空的。现在我想更改 image_tab 事件上的图像,有人可以帮我找到这个吗?

Uri myfile = new Uri("Images/star.png", UriKind.Relative);
StreamResourceInfo resourceInfo = Application.GetResourceStream(myfile);
BitmapImage myimage = new BitmapImage(myfile);
myimage.SetSource(resourceInfo.Stream);
image1.Source = myimage;
4

1 回答 1

0

我不确定image_tab你的情况到底是什么(也许Image_Tap?),但你可以通过使用来简化你的图像源分配:

Uri uri = new Uri("PATH", UriKind.Relative);
BitmapImage imageSource = new BitmapImage(uri);
image.Source = imageSource;

请记住,该ImageSource对象不会直接公开路径,因此您可能希望有一个内部引用位置来处理您使用的文件的路径。

于 2013-04-15T18:00:55.117 回答