Update: The source codes and the information in this article are compatible with Silverlight 2 RTW.
Introduction
In this tutorial we will provide brief introduction in the usage of the image control. It’s not very complicated, but there are a few interesting things we can find out about it.
Overview
For our examples we will use the turtle from the Sample Images in Windows. Here is the first example:
<Grid x:Name="Layout" Background="Black" Width="300" Height="200">
<Image x:Name="MyImage" Source="/Images/GiantSeaTurtle.jpg"></Image>
</Grid>
In it we use the Source property of the Image control.