EllipsePage.xaml 1017 B

1234567891011121314151617181920212223
  1. <UserControl xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. x:Class="ControlCatalog.Pages.EllipsePage">
  4. <StackPanel Orientation="Vertical" Spacing="4">
  5. <TextBlock Classes="h1">Ellipse</TextBlock>
  6. <TextBlock Classes="h2">A control which represents an ellipse with a fill and a stroke.</TextBlock>
  7. <StackPanel Orientation="Vertical"
  8. Margin="0,16,0,0"
  9. HorizontalAlignment="Center"
  10. Spacing="16">
  11. <Ellipse Width="200" Height="200" Fill="Red" Stroke="Blue" StrokeThickness="{Binding #StrokeThickness.Value}"/>
  12. <Ellipse Width="200" Height="100" Fill="Red" Stroke="Blue" StrokeThickness="{Binding #StrokeThickness.Value}"/>
  13. <Grid ColumnDefinitions="Auto,*">
  14. <TextBlock Grid.Column="0" Text="Stroke thickness"/>
  15. <Slider Grid.Column="1" Name="StrokeThickness" Maximum="10" Value="1"/>
  16. </Grid>
  17. </StackPanel>
  18. </StackPanel>
  19. </UserControl>