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.
37 lines
1.7 KiB
37 lines
1.7 KiB
<UserControl xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
x:Class="ControlCatalog.Pages.CarouselPageEventsPage">
|
|
<DockPanel>
|
|
<StackPanel DockPanel.Dock="Right" Width="240" Margin="0,0,0,0">
|
|
<StackPanel Margin="12" Spacing="8">
|
|
<TextBlock Text="Event Log" FontWeight="SemiBold" FontSize="16"
|
|
Foreground="{DynamicResource SystemControlHighlightAccentBrush}" />
|
|
|
|
<TextBlock Text="Navigate" FontWeight="SemiBold" FontSize="13" />
|
|
<StackPanel Spacing="6">
|
|
<Button Content="Previous" Click="OnPrevious" HorizontalAlignment="Stretch" />
|
|
<Button Content="Next" Click="OnNext" HorizontalAlignment="Stretch" />
|
|
</StackPanel>
|
|
|
|
<Separator />
|
|
|
|
<Button Content="Clear Log" Click="OnClearLog" HorizontalAlignment="Stretch" />
|
|
</StackPanel>
|
|
<Border Height="1" Background="{DynamicResource SystemControlForegroundBaseMediumLowBrush}" />
|
|
<ScrollViewer x:Name="LogScrollViewer" VerticalScrollBarVisibility="Auto">
|
|
<TextBlock x:Name="EventLog" Margin="12" FontSize="11"
|
|
FontFamily="Courier New, Consolas, monospace"
|
|
TextWrapping="Wrap" Opacity="0.85" />
|
|
</ScrollViewer>
|
|
</StackPanel>
|
|
|
|
<Border DockPanel.Dock="Right" Width="1"
|
|
Background="{DynamicResource SystemControlForegroundBaseMediumLowBrush}" />
|
|
|
|
<Border Margin="12"
|
|
BorderBrush="{DynamicResource SystemControlForegroundBaseMediumLowBrush}"
|
|
BorderThickness="1" CornerRadius="6" ClipToBounds="True">
|
|
<CarouselPage x:Name="DemoCarousel" />
|
|
</Border>
|
|
</DockPanel>
|
|
</UserControl>
|
|
|