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.
51 lines
1.7 KiB
51 lines
1.7 KiB
using System;
|
|
using Avalonia.Animation;
|
|
using Avalonia.Controls;
|
|
using Avalonia.Markup.Xaml;
|
|
|
|
namespace ControlCatalog.Pages
|
|
{
|
|
public class CarouselPage : UserControl
|
|
{
|
|
private Carousel _carousel;
|
|
private Button _left;
|
|
private Button _right;
|
|
private ComboBox _transition;
|
|
private ComboBox _orientation;
|
|
|
|
public CarouselPage()
|
|
{
|
|
this.InitializeComponent();
|
|
_left.Click += (s, e) => _carousel.Previous();
|
|
_right.Click += (s, e) => _carousel.Next();
|
|
_transition.SelectionChanged += TransitionChanged;
|
|
_orientation.SelectionChanged += TransitionChanged;
|
|
}
|
|
|
|
private void InitializeComponent()
|
|
{
|
|
AvaloniaXamlLoader.Load(this);
|
|
_carousel = this.FindControl<Carousel>("carousel");
|
|
_left = this.FindControl<Button>("left");
|
|
_right = this.FindControl<Button>("right");
|
|
_transition = this.FindControl<ComboBox>("transition");
|
|
_orientation = this.FindControl<ComboBox>("orientation");
|
|
}
|
|
|
|
private void TransitionChanged(object sender, SelectionChangedEventArgs e)
|
|
{
|
|
switch (_transition.SelectedIndex)
|
|
{
|
|
case 0:
|
|
_carousel.PageTransition = null;
|
|
break;
|
|
case 1:
|
|
_carousel.PageTransition = new PageSlide(TimeSpan.FromSeconds(0.25), _orientation.SelectedIndex == 0 ? PageSlide.SlideAxis.Horizontal : PageSlide.SlideAxis.Vertical);
|
|
break;
|
|
case 2:
|
|
_carousel.PageTransition = new CrossFade(TimeSpan.FromSeconds(0.25));
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|