mirror of
https://gitcode.com/gh_mirrors/se/Semi.Avalonia
synced 2026-04-08 02:06:37 +08:00
* feat: add CarouselPage and PipsPager. * feat: add PipsPager control and integrate into index * feat: add PipsPagerDemo and integrate into MainView --------- Co-authored-by: Zhang Dian <54255897+zdpcdt@users.noreply.github.com>
13 lines
190 B
C#
13 lines
190 B
C#
using Avalonia.Controls;
|
|
|
|
namespace Semi.Avalonia.Demo.Pages;
|
|
|
|
public partial class PipsPagerDemo : UserControl
|
|
{
|
|
public PipsPagerDemo()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
|