| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <UserControl xmlns="https://github.com/avaloniaui"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:collections="using:System.Collections"
- x:Class="ControlCatalog.Pages.ViewboxPage">
- <Grid RowDefinitions="Auto,*,*">
- <StackPanel Orientation="Vertical" Spacing="4">
- <TextBlock Classes="h2">A control used to scale single child.</TextBlock>
- </StackPanel>
- <Grid Grid.Row="1" ColumnDefinitions="*,Auto" HorizontalAlignment="Center" Margin="0,10,0,0">
- <Border HorizontalAlignment="Center" Grid.Column="0" BorderThickness="1" BorderBrush="Orange" Width="200" Height="200">
- <Border VerticalAlignment="Center" HorizontalAlignment="Center" Grid.Column="0" BorderThickness="1" BorderBrush="CornflowerBlue" Width="{Binding #WidthSlider.Value}" Height="{Binding #HeightSlider.Value}" >
- <Viewbox
- Stretch="{Binding #StretchSelector.SelectedItem, FallbackValue={x:Static Stretch.Uniform}}"
- StretchDirection="{Binding #StretchDirectionSelector.SelectedItem, FallbackValue={x:Static StretchDirection.Both}}">
- <Ellipse Width="50" Height="50" Fill="CornflowerBlue" />
- </Viewbox>
- </Border>
- </Border>
- <StackPanel HorizontalAlignment="Left" Orientation="Vertical" Grid.Column="1" Margin="8,0,0,0" Width="150">
- <TextBlock Text="Width" />
- <Slider Minimum="10" Maximum="200" Value="100" x:Name="WidthSlider" TickFrequency="25" TickPlacement="TopLeft" />
- <TextBlock Text="Height" />
- <Slider Minimum="10" Maximum="200" Value="100" x:Name="HeightSlider" TickFrequency="25" TickPlacement="TopLeft" />
- <TextBlock Text="Stretch" />
- <ComboBox x:Name="StretchSelector" HorizontalAlignment="Stretch" SelectedIndex="0" Margin="0,0,0,2">
- <collections:ArrayList>
- <Stretch>Uniform</Stretch>
- <Stretch>UniformToFill</Stretch>
- <Stretch>Fill</Stretch>
- <Stretch>None</Stretch>
- </collections:ArrayList>
- </ComboBox>
- <TextBlock Text="Stretch Direction" />
- <ComboBox x:Name="StretchDirectionSelector" SelectedIndex="0" HorizontalAlignment="Stretch">
- <collections:ArrayList>
- <StretchDirection>Both</StretchDirection>
- <StretchDirection>DownOnly</StretchDirection>
- <StretchDirection>UpOnly</StretchDirection>
- </collections:ArrayList>
- </ComboBox>
- </StackPanel>
- </Grid>
- </Grid>
- </UserControl>
|