public static BitmapImage ImageFromPath(string path) { Uri imgUri = new Uri(path, UriKind.Relative); StreamResourceInfo imageResource = Application.GetResourceStream(imgUri); BitmapImage image = new BitmapImage(); image.SetSource(imageResource.Stream); return image; } |
Il path dovrà essere così composto: <NomeProgetto>;component/Path/NomeImmage
Nessun commento:
Posta un commento