标签: xamarin xamarin.forms
我有一个Image,并且正在更改其Source。不幸的是Image并不总是更新。我当前的解决方法是:
Image
Source
theStackLayout.Children.Remove(image); theStackLayout.Children.Insert(0, image);
有必须应该是更好的方法。