You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
405 B
C#

Display a Static Image
<Window x:Class="WpfApplication1.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="WPF" Height="400" Width="500">
<StackPanel Orientation="Horizontal">
<Image Margin="8" ToolTip="Bottom Image" Width="120" Source="c:\image.gif" />
</StackPanel>
</Window>