| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <UserControl xmlns="https://github.com/avaloniaui"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- x:Class="ControlCatalog.Pages.ImagePage">
- <StackPanel Orientation="Vertical" Spacing="4">
- <TextBlock Classes="h1">Image</TextBlock>
- <TextBlock Classes="h2">Displays an image</TextBlock>
- <StackPanel Orientation="Horizontal"
- Margin="0,16,0,0"
- HorizontalAlignment="Center"
- Spacing="16">
- <StackPanel Orientation="Vertical">
- <TextBlock>No Stretch</TextBlock>
- <Image Source="/Assets/delicate-arch-896885_640.jpg"
- Width="100" Height="200"
- Stretch="None"/>
- </StackPanel>
- <StackPanel Orientation="Vertical">
- <TextBlock>Fill</TextBlock>
- <Image Source="/Assets/delicate-arch-896885_640.jpg"
- Width="100" Height="200"
- Stretch="Fill"/>
- </StackPanel>
- <StackPanel Orientation="Vertical">
- <TextBlock>Uniform</TextBlock>
- <Image Source="/Assets/delicate-arch-896885_640.jpg"
- Width="100" Height="200"
- Stretch="Uniform"/>
- </StackPanel>
- <StackPanel Orientation="Vertical">
- <TextBlock>UniformToFill</TextBlock>
- <Image Source="/Assets/delicate-arch-896885_640.jpg"
- Width="100" Height="200"
- Stretch="UniformToFill"/>
- </StackPanel>
- </StackPanel>
- <StackPanel Orientation="Vertical">
- <TextBlock>Window Icon as an Image</TextBlock>
- <Image Name="Icon" Width="100" Height="200" Stretch="None" />
- </StackPanel>
- </StackPanel>
- </UserControl>
|