feat: Add FullCarousel theme.

This commit is contained in:
rabbitism
2023-02-05 22:30:01 +08:00
parent 2b0c26660e
commit 08f8ccd215
8 changed files with 260 additions and 34 deletions

View File

@@ -10,17 +10,5 @@ public partial class CarouselDemo : UserControl
public CarouselDemo()
{
InitializeComponent();
Previous.Click += OnPreviousClick;
Next.Click += OnNextClick;
}
private void OnPreviousClick(object sender, RoutedEventArgs args)
{
carousel.Previous();
}
private void OnNextClick(object sender, RoutedEventArgs args)
{
carousel.Next();
}
}