RectanglePage.xaml 908 B

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