| 123456789101112131415161718192021222324252627282930 |
- <UserControl xmlns="https://github.com/avaloniaui"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:viewModels="using:ControlCatalog.ViewModels"
- x:Class="ControlCatalog.Pages.CursorPage"
- x:DataType="viewModels:CursorPageViewModel">
- <Grid ColumnDefinitions="*,*" RowDefinitions="Auto,*">
- <StackPanel Grid.ColumnSpan="2" Orientation="Vertical" Spacing="4">
- <TextBlock Classes="h2">Defines a cursor (mouse pointer)</TextBlock>
- </StackPanel>
- <ListBox Grid.Row="1" Items="{Binding StandardCursors}" Margin="0 8 8 8">
- <ListBox.Styles>
- <Style Selector="ListBoxItem">
- <Setter Property="Cursor" Value="{Binding Cursor}" x:DataType="viewModels:StandardCursorModel"/>
- </Style>
- </ListBox.Styles>
- <ListBox.ItemTemplate>
- <DataTemplate>
- <TextBlock Text="{Binding Type}"/>
- </DataTemplate>
- </ListBox.ItemTemplate>
- </ListBox>
- <StackPanel Grid.Column="1" Grid.Row="1" Margin="8 8 0 8">
- <Button Cursor="{Binding CustomCursor}" Margin="0 8" Padding="16">
- <TextBlock>Custom Cursor</TextBlock>
- </Button>
- </StackPanel>
- </Grid>
- </UserControl>
|