这是XAML中定义的启动映像:
Source="/MyApp;component/media/person.png"
然后我在代码中替换它:
personPhoto.Source = blaBlah(personID);
现在我该如何加载默认/启动图像?
答案 0 :(得分:1)
您可以将其存储在临时变量中,并在需要时将其分配回来
var tmpSource = personPhoto.Source;
personPhoto.Source = blaBlah(personID);
...
//Set back to default value
personPhoto.Source = tmpSource;
希望这有帮助