在页面的object标签定义1个ID和以各图片的URL 然后传到 Silverlight里显示出来就可以了
第一步在页面上写
<param name="InitParams" value='ImageAddress='http://2010.21.12.1/?id=1''/>
第二步在App取得此参数
if (e.InitParams.ContainsKey("'ImageAddress"))
{
var slServicePath = e.InitParams["'ImageAddress"];
Application.Current.Resources.Add("'ImageAddress", slServicePath);
}
第三步显示图片
图片地址:Application.Current.Resources["'ImageAddress"],然后把这个地址赋值给图片控件即可