我已经尝试过了,但我没有得到答案。我有 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;