csharpc-sharpdotnetxamlavaloniauicross-platformcross-platform-xamlavaloniaguimulti-platformuser-interfacedotnetcore
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.6 KiB
45 lines
1.6 KiB
<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>
|
|
|