Displaying Images
Here's a good article: Different ways for loading images and files in Silverlight 2 applications [^]
View ArticleDisplaying Images
VS 2010 sets Source property to:<Image Source="/SilverlightApplication1;component/Images/labeo-rohita.png" /> Silverlight 3 Application, Applicataion name = SilverlightApplication1...
View ArticleDisplaying Images
The first part in this is to figure out how the application knows what images are available. Since I guess that there are 0 to 10 images available, the application needs to figure out what number of...
View ArticleDisplaying Images
I use the following in my Silverlight code1 string host = App.Current.Host.Source.ToString();2 host = host.Substring(0, host.IndexOf("/ClientBin"));3 WebClient localwebclient = new WebClient();4...
View ArticleDisplaying Images
I've only really started looking at Silverlight within the past few days, so forgive me if this question is complete idiocy! I am developing a real estate website. Each property added to the website...
View Article