How to Load Image that is set as Embedded Resource in BuildAction in Windows Phone
Join the DZone community and get the full member experience.
Join For FreeIn one of my previous posts, I explained how to load the Image that is Set as Resource in Build Action .
In this blog post, I will provide you a sample that loads the image which is set as “Embedded Resource” in Windows Phone using the Assembly’s GetManifestResourceStream.
Use the GetManifestResourceStream method in the Assembly object by passing the image name.
Make sure that the image is set to the Embedded Resource and when passing the image name pass the image name along with the Namespace as shown in the below sample code where PhoneApp3 is the ProjectName and StartScreen.jpg is the file name.
Set the BitMapImage’s source to the stream and assign this to the Source property of the Image.
private void button1_Click_1(object sender, RoutedEventArgs e) { Assembly CurrentAssembly; CurrentAssembly = Assembly.GetExecutingAssembly(); Stream EmbeddedResourceStream = CurrentAssembly.GetManifestResourceStream(“PhoneApp3.StartScreen.jpg”); BitmapImage bitMapImage = new BitmapImage(); bitMapImage.SetSource(EmbeddedResourceStream); image1.Source = bitMapImage; }
Published at DZone with permission of Senthil Kumar, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments