Xamarin Forms MVVM (Prism) with Media.Plugin - How to get a taken picture from device storage
问题 I am using Xamarin Forms PCL (MVVM Prism) with MediaPlugin (https://github.com/jamesmontemagno/MediaPlugin). I have a viewModel with a public property called ImagePath private string imagePath; public string ImagePath { get { return imagePath; } set { SetProperty(ref imagePath, value, "ImagePath"); } } in my XAML i have: <Image Source="{Binding ImagePath}" HeightRequest="100" WidthRequest="100"/> When i set a image url (from web) to ImagePath property, it works without problems. (I am setting