有没有办法一次分配多个图像源

时间:2011-04-08 06:20:18

标签: silverlight silverlight-4.0 image-processing

在silverlight中是否有任何方法可以及时分配多个图像来选择单个图像并设置它的来源,它将分配给包装中的所有图像。

...谢谢!

1 个答案:

答案 0 :(得分:0)

也许是这样的?

foreach(Image image in imageWrappanel.Children) {
    image.Source = selectedImage.source;
}

假设您有一个名为imageWrappanel的包装带,并且所选的图像称为selectedImage