#273 – Display a Picture Using an Image Control

The Image control in WPF allows you to display an image in your user interface.  The control can display an image that is stored in any of the following file types: .png, .jpg, .gif, .bmp, .ico, .wdp, or .tiff.

You tell the Image control where to find the image content using the Source property.  In the example below, Source points to a .jpg file on a web site using a URI, or Uniform Resource Identifier.

<Window
    Width="400" Height="300">
	<Image Source="http://www.seans.com/KlondikeSm.jpg" />
</Window>

Advertisement

About Sean
Software developer in the Twin Cities area, passionate about software development and sailing.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: